diff --git a/.github/workflows/cd_github_binary.yml b/.github/workflows/cd_github_binary.yml index 8a0fdd175..993c8d5c4 100644 --- a/.github/workflows/cd_github_binary.yml +++ b/.github/workflows/cd_github_binary.yml @@ -30,9 +30,21 @@ jobs: - name: Build run: | yarn build - - name: Upload the artifacts - uses: skx/github-action-publish-binaries@master + - name: Upload artifacts + uses: xresloader/upload-to-github-release@v1 env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: - args: 'dist/*' + file: "dist/*" + tags: true + draft: false + overwrite: true + - name: Upload binaries to release + uses: svenstaro/upload-release-action@v2 + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + file: "dist/*" + file_glob: true + tag: ${{ github.ref }} + overwrite: true + body: "This is my release text" \ No newline at end of file