Skip to content

Commit 577a955

Browse files
committed
docs(workflows): fix workflow
1 parent cd68ded commit 577a955

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,10 @@ jobs:
4949
if [ "${{ matrix.goos }}" = "windows" ]; then EXT=".exe"; fi
5050
GOOS=${{ matrix.goos }} GOARCH=${{ matrix.goarch }} go build -o dist/myapp-${{ matrix.goos }}-${{ matrix.goarch }}${EXT} .
5151
52-
- name: Upload release assets
53-
uses: softprops/action-gh-release@v2
52+
- name: Upload assets to existing release
53+
uses: AButler/upload-release-assets@v2.0
5454
with:
55-
tag_name: ${{ env.TAG_NAME }}
5655
files: dist/*
57-
env:
58-
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
56+
repo-token: ${{ secrets.GITHUB_TOKEN }}
57+
tag: ${{ env.TAG_NAME }}
58+
overwrite: true

0 commit comments

Comments
 (0)