We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
gh
1 parent e030f31 commit b352d42Copy full SHA for b352d42
.github/workflows/ci.yaml
@@ -85,14 +85,8 @@ jobs:
85
- name: Upload release assets
86
run: |
87
set -x
88
- upload_url="${{steps.release.outputs.upload_url}}"
89
- tarball="bash-completion-$(cat version.txt).tar.xz"
90
- curl \
91
- --header "Authorization: Bearer ${{secrets.GITHUB_TOKEN}}" \
92
- --header "Accept: application/vnd.github.v3+json" \
93
- --header "Content-Type: application/x-xz-compressed-tar" \
94
- --data-binary "@$tarball" \
95
- "${upload_url%{*}?name=$tarball"
+ gh release upload ${{steps.release.outputs.tag_name}} \
+ bash-completion-$(cat version.txt).tar.xz
96
if: steps.release.outputs.release_created
97
- uses: actions/upload-artifact@v4
98
with:
0 commit comments