We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e8efe5 commit 5457b5fCopy full SHA for 5457b5f
.github/workflows/release.yml
@@ -32,7 +32,8 @@ jobs:
32
- name: Upload binary to release
33
run: |
34
TAG_NAME=${GITHUB_REF#refs/tags/}
35
- gh release upload $TAG_NAME 'target/release/protofetch#protofetch-linux'
+ cp target/release/protofetch protofetch-linux
36
+ gh release upload $TAG_NAME protofetch-linux
37
env:
38
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
39
@@ -56,6 +57,7 @@ jobs:
56
57
58
59
- gh release upload $TAG_NAME 'target/release/protofetch#protofetch-macos'
60
+ cp target/release/protofetch protofetch-macos
61
+ gh release upload $TAG_NAME protofetch-macos
62
63
0 commit comments