Skip to content

Commit 5fab0a2

Browse files
committed
feat: Attach binaries to GitHub release
1 parent f5d5401 commit 5fab0a2

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/release.yml

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,3 +38,15 @@ jobs:
3838
run: bunx changelogithub
3939
env:
4040
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
41+
42+
- name: Attach Binaries
43+
uses: softprops/action-gh-release@v2
44+
with:
45+
files: |
46+
bin/bin-name-linux-x64
47+
bin/bin-name-linux-arm64
48+
bin/bin-name-windows-x64.exe
49+
bin/bin-name-darwin-x64
50+
bin/bin-name-darwin-arm64
51+
env:
52+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)