Skip to content

Commit

Permalink
Attempt to build with Java 22 in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
eyedeekay committed Aug 29, 2024
1 parent c65aea0 commit cb45048
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/ant.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,23 @@ jobs:
with:
name: I2P-${{ github.sha }}.dmg
path: I2P-1.0.dmg

build-22:
runs-on: macos-latest

steps:
- uses: actions/checkout@v4
- name: Set up JDK 22
uses: actions/setup-java@v4
with:
java-version: '22'
distribution: 'temurin'
- name: build with script
run: ./build.sh
- name: Upload I2P-${{ github.sha }}.dmg
uses: actions/upload-artifact@v4
with:
name: I2P-${{ github.sha }}-22.dmg
path: I2P-1.0.dmg


0 comments on commit cb45048

Please sign in to comment.