Skip to content

Commit

Permalink
fix upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ywy2090 committed Sep 19, 2022
1 parent b865403 commit fb87bbb
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,14 +74,25 @@ jobs:
tar -zcf fisco-bcos.tar.gz fisco-bcos
strip fisco-sync
tar -zcf fisco-sync.tar.gz fisco-sync
- name: Upload binaries to release
- name: Upload fisco-bcos-withSymbols to release
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: bin/fisco-bcos-withSymbols.tar.gz
asset_name: fisco-bcos-withSymbols.tar.gz
tag: ${{ github.ref }}
overwrite: true
- name: Upload fisco-bcos to release
uses: svenstaro/upload-release-action@v1-release
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: bin/fisco-bcos.tar.gz
asset_name: fisco-bcos.tar.gz
tag: ${{ github.ref }}
overwrite: true
- name: Upload fisco-sync to release
uses: svenstaro/upload-release-action@v1-release
with:
file: bin/fisco-sync.tar.gz
asset_name: fisco-sync.tar.gz
tag: ${{ github.ref }}
Expand Down

0 comments on commit fb87bbb

Please sign in to comment.