We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 156e65c commit 56ce5c9Copy full SHA for 56ce5c9
.github/workflows/pack.yml
@@ -29,9 +29,9 @@ jobs:
29
run: |
30
md release_package
31
copy bin\release\* release_package
32
- compress-archive -Path release_package -DestinationPath rmdup_${{github.ref}}.zip
+ compress-archive -Path release_package -DestinationPath rmdup_${{github.ref_name}}.zip
33
- name: Release
34
uses: softprops/action-gh-release@v2
35
if: startsWith(github.ref, 'refs/tags/')
36
with:
37
- files: rmdup_${{github.ref}}.zip
+ files: rmdup_${{github.ref_name}}.zip
0 commit comments