Skip to content

Commit 019cbc1

Browse files
committed
Fix archive path
1 parent b72525b commit 019cbc1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Build
5555
run: cd bins && cargo build --release
5656
- name: Archive files
57-
run: tar -cvzf ckb-debugger-linux-x64.tar.gz bins/target/release/ckb-debugger LICENSE
57+
run: cp bins/target/release/ckb-debugger ./ && tar -cvzf ckb-debugger-linux-x64.tar.gz ckb-debugger LICENSE
5858
- name: Generate checksum
5959
run: sha256sum ckb-debugger-linux-x64.tar.gz > ckb-debugger-linux-x64-sha256.txt
6060
- name: Upload binary
@@ -99,7 +99,7 @@ jobs:
9999
- name: Build
100100
run: cd bins && cargo build --release
101101
- name: Archive files
102-
run: tar -cvzf ckb-debugger-macos-x64.tar.gz bins/target/release/ckb-debugger LICENSE
102+
run: cp bins/target/release/ckb-debugger ./ && tar -cvzf ckb-debugger-linux-x64.tar.gz ckb-debugger LICENSE
103103
- name: Generate checksum
104104
run: shasum -a 256 ckb-debugger-macos-x64.tar.gz > ckb-debugger-macos-x64-sha256.txt
105105
- name: Upload binary

0 commit comments

Comments
 (0)