We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2158309 commit acb163eCopy full SHA for acb163e
.github/workflows/release.yml
@@ -24,13 +24,13 @@ jobs:
24
run: ./gradlew build
25
26
- name: Rename the package
27
- 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
28
29
- name: Release
30
uses: softprops/action-gh-release@v2
31
if: startsWith(github.ref, 'refs/tags/')
32
with:
33
- files: rpki-ta-0-${{github.ref_name}}-java-11.tgz
+ files: ${{github.ref_name}}-java-11.tgz
34
draft: true
35
body: It needs to be filled in manually
36
0 commit comments