We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 51bb0f5 commit c9017a6Copy full SHA for c9017a6
.github/workflows/test.yml
@@ -43,10 +43,10 @@ jobs:
43
go build && mv chkbundle "chkbundle-${GOOS}-${GOARCH}"
44
sha1sum chkbundle-* > chkbundle.sum
45
46
- - name: Publish artifact
+ - name: Publish files to release
47
if: github.event_name == 'release'
48
- uses: actions/upload-artifact@v4
49
- with:
50
- path: |
51
- chkbundle-*
52
- chkbundle.sum
+ env:
+ GITHUB_TOKEN: ${{ github.TOKEN }}
+ run: |
+ gh release upload ${{github.event.release.tag_name}} chkbundle-*
+ gh release upload ${{github.event.release.tag_name}} chkbundle.sum
0 commit comments