Skip to content

Commit

Permalink
Fix yaml file
Browse files Browse the repository at this point in the history
  • Loading branch information
xxuejie committed Jan 10, 2024
1 parent 3f99c08 commit 3766d71
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ jobs:
- run: tar czf ckb-transaction-dumper_v${{ github.ref_name }}_node_executable_script.tar.gz ckb-transaction-dumper README.md LICENSE
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: ckb-transaction-dumper_v${{ github.ref_name }}_node_executable_script.tar.gz

Expand All @@ -35,6 +36,7 @@ jobs:
- run: tar czf ckb-transaction-dumper_v${{ github.ref_name }}_linux_x86_64.tar.gz ckb-transaction-dumper README.md LICENSE
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: ckb-transaction-dumper_v${{ github.ref_name }}_linux_x86_64.tar.gz

Expand All @@ -51,10 +53,11 @@ jobs:
- run: tar czf ckb-transaction-dumper_v${{ github.ref_name }}_macos_x86_64.tar.gz ckb-transaction-dumper README.md LICENSE
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: ckb-transaction-dumper_v${{ github.ref_name }}_macos_x86_64.tar.gz

macos-release:
windows-release:
runs-on: windows-2019
steps:
- uses: actions/checkout@v3
Expand All @@ -67,5 +70,6 @@ jobs:
- run: tar czf ckb-transaction-dumper_v${{ github.ref_name }}_win_x86_64.tar.gz ckb-transaction-dumper README.md LICENSE
- name: Release
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
files: ckb-transaction-dumper_v${{ github.ref_name }}_win_x86_64.tar.gz

0 comments on commit 3766d71

Please sign in to comment.