Skip to content

Commit

Permalink
Merge pull request #105 from jburel/upload_jar
Browse files Browse the repository at this point in the history
Upload the artifacts when a tag is pushed
  • Loading branch information
dominikl authored Jan 24, 2025
2 parents 6a911dd + 2cc635c commit ff0ae76
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,3 +100,17 @@ jobs:
env:
MAVEN_USERNAME: ${{ secrets.CI_DEPLOY_USER }}
MAVEN_PASSWORD: ${{ secrets.CI_DEPLOY_PASS }}
- name: Download artifacts from build
uses: actions/download-artifact@v4
with:
name: ZarrReader
- name: List artifacts
run: ls -R
- name: Upload binaries to release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: OMEZarrReader*jar-with-dependencies.jar
tag: ${{ github.ref }}
overwrite: true
file_glob: true

0 comments on commit ff0ae76

Please sign in to comment.