Skip to content

Commit

Permalink
more updates to github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
peterstadler committed Oct 10, 2024
1 parent 26a85b2 commit 39c3596
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ jobs:
# fetch all history to include latest tag for the git revision info
fetch-depth: 0
- name: Set up JDK 11
uses: actions/setup-java@v3
uses: actions/setup-java@v4
with:
distribution: zulu
java-version: 11
- name: Build with Ant
run: ant clean xar
- name: Archive xar package
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: xar-package
path: build/*.xar
- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/') && github.event_name != 'pull_request'
with:
prerelease: true
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:
uses: docker/setup-qemu-action@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
uses: docker/setup-buildx-action@v3

- name: Log in to GitHub Container registry
uses: docker/login-action@v3
Expand Down

0 comments on commit 39c3596

Please sign in to comment.