Skip to content

Commit

Permalink
chore(workflows): fix the action to upload artifacts (#335)
Browse files Browse the repository at this point in the history
fixes a bug to upload the binary and its checksum to GH release page

issue: none
  • Loading branch information
AndyBoWu authored Nov 1, 2024
1 parent a34752f commit 20fed5e
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions .github/workflows/build-release-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,5 +64,13 @@ jobs:
tag: ${{ github.event.release.tag_name }}
file: |
./client/story-${{ matrix.platform }}
file_glob: false

- name: Upload binaries and source code to GitHub Release
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ github.event.release.tag_name }}
file: |
./client/story-${{ matrix.platform }}.sha256
file_glob: false

0 comments on commit 20fed5e

Please sign in to comment.