Skip to content

Commit acb163e

Browse files
committed
Fix file names
1 parent 2158309 commit acb163e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ jobs:
2424
run: ./gradlew build
2525

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

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

0 commit comments

Comments
 (0)