Skip to content

Commit

Permalink
Fix file names
Browse files Browse the repository at this point in the history
  • Loading branch information
lolepezy committed Jan 9, 2025
1 parent 2158309 commit acb163e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:
run: ./gradlew build

- name: Rename the package
run: mv $(find build/distributions -name rpki-ta-0\*.tgz) rpki-ta-0-${{github.ref_name}}-java-11.tgz
run: mv $(find build/distributions -name rpki-ta-0\*.tgz) ${{github.ref_name}}-java-11.tgz

- name: Release
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: rpki-ta-0-${{github.ref_name}}-java-11.tgz
files: ${{github.ref_name}}-java-11.tgz
draft: true
body: It needs to be filled in manually

0 comments on commit acb163e

Please sign in to comment.