Skip to content

Commit

Permalink
Fix ci upload release action
Browse files Browse the repository at this point in the history
  • Loading branch information
p4skal committed Mar 18, 2022
1 parent 7de2dd9 commit eb64e87
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,11 +31,13 @@ jobs:
draft: false
prerelease: true
- name: Upload Package to Release
uses: AButler/upload-release-assets@v2.0
uses: svenstaro/upload-release-action@v2
with:
files: '*.tgz'
repo-token: ${{ secrets.GITHUB_TOKEN }}
release-tag: ${{ github.ref }}
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: '*.tgz'
tag: ${{ github.ref }}
overwrite: true
file_glob: true
- name: Upload Index to Release
uses: actions/upload-release-asset@v1
env:
Expand Down

0 comments on commit eb64e87

Please sign in to comment.