Skip to content

Commit

Permalink
(fix) change artifact name
Browse files Browse the repository at this point in the history
  • Loading branch information
strazzere committed Aug 6, 2024
1 parent 731ebb9 commit c3acbdc
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,13 @@ jobs:
tags: |
type=sha,format=short,prefix=
- name: Extract short SHA for artifact name
id: short-sha
run: echo "sha_short=$(echo ${{ steps.meta.outputs.tags }} | cut -d: -f2)" >> $GITHUB_ENV


- name: Upload JAR as artifact
uses: actions/upload-artifact@v3
with:
name: axmlprinter-${{ steps.meta.outputs.tags }}
name: axmlprinter-${{ env.sha_short }}
path: build/libs/*.jar

0 comments on commit c3acbdc

Please sign in to comment.