We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d0b871 commit a398bd9Copy full SHA for a398bd9
.github/workflows/release.yml
@@ -18,9 +18,6 @@ jobs:
18
runs-on: ubuntu-latest
19
permissions:
20
contents: write
21
- env:
22
- GH_TOKEN: ${{github.token}}
23
- TAG: ${{github.event.inputs.tag}}
24
steps:
25
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
26
with:
@@ -33,8 +30,8 @@ jobs:
33
30
path: bootstrap-binaries
34
31
merge-multiple: true
35
32
36
- - name: Push tag
37
- run: gh release create "$TAG" --generate-notes
38
-
39
- - name: Upload to GitHub Releases
40
- run: gh release upload "$TAG" bootstrap-binaries/*.tar.gz
+ - name: Create release
+ run: gh release create "$TAG" --generate-notes bootstrap-binaries/*.tar.gz
+ env:
+ GH_TOKEN: ${{github.token}}
+ TAG: ${{github.event.inputs.tag}}
0 commit comments