From cf176512717b14a1820c254a0cdff1ac8f2656d4 Mon Sep 17 00:00:00 2001 From: Andy Wu Date: Thu, 31 Oct 2024 15:02:37 -0700 Subject: [PATCH] chore(workflows): fix the action to upload artifacts --- .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