From 20fed5ed45d39c9ac59ab17c03ff3b1efac0f7b2 Mon Sep 17 00:00:00 2001 From: Andy Wu Date: Thu, 31 Oct 2024 18:19:33 -0700 Subject: [PATCH] chore(workflows): fix the action to upload artifacts (#335) fixes a bug to upload the binary and its checksum to GH release page issue: none --- .github/workflows/build-release-artifacts.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/build-release-artifacts.yml b/.github/workflows/build-release-artifacts.yml index d2a59316..3afa1dea 100644 --- a/.github/workflows/build-release-artifacts.yml +++ b/.github/workflows/build-release-artifacts.yml @@ -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