Skip to content

Commit c4e72f6

Browse files
committed
Fix duplicate asset upload in release
Co-Authored-By: BitCode <https://github.com/sazid/bitcode>
1 parent fada655 commit c4e72f6

1 file changed

Lines changed: 5 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,14 @@ jobs:
8787
run: |
8888
VERSION=${GITHUB_REF#refs/tags/v}
8989
90-
# Create release
90+
# Create release and upload binaries
9191
gh release create "v${VERSION}" \
9292
--title "BitCode v${VERSION}" \
9393
--generate-notes \
94-
artifacts/*
94+
artifacts/bitcode-linux-amd64 \
95+
artifacts/bitcode-linux-arm64 \
96+
artifacts/bitcode-darwin-amd64 \
97+
artifacts/bitcode-darwin-arm64
9598
9699
# Upload checksums
97100
gh release upload "v${VERSION}" artifacts/checksums.txt

0 commit comments

Comments
 (0)