Skip to content

Commit

Permalink
fix(cd): replace github upload action
Browse files Browse the repository at this point in the history
  • Loading branch information
ihexxa committed Nov 7, 2021
1 parent 769ddb0 commit 9a52673
Showing 1 changed file with 15 additions and 3 deletions.
18 changes: 15 additions & 3 deletions .github/workflows/cd_github_binary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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"

0 comments on commit 9a52673

Please sign in to comment.