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 cd68ded commit 577a955Copy full SHA for 577a955
.github/workflows/release.yml
@@ -49,10 +49,10 @@ jobs:
49
if [ "${{ matrix.goos }}" = "windows" ]; then EXT=".exe"; fi
50
GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o dist/myapp-${{ matrix.goos }}-${{ matrix.goarch }}${EXT} .
51
52
- - name: Upload release assets
53
- uses: softprops/action-gh-release@v2
+ - name: Upload assets to existing release
+ uses: AButler/upload-release-assets@v2.0
54
with:
55
- tag_name: ${{ env.TAG_NAME }}
56
files: dist/*
57
- env:
58
- GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
+ repo-token: ${{ secrets.GITHUB_TOKEN }}
+ tag: ${{ env.TAG_NAME }}
+ overwrite: true
0 commit comments