Skip to content

Commit 84b46e7

Browse files
committed
Might have fixed problem
1 parent 5c3d7b6 commit 84b46e7

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build_test_release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,21 @@ jobs:
1818
- name: publish project
1919
shell: bash
2020
run: |
21-
ls -la ./dist
21+
cp ./src_code/go_src/author.txt ./dist
2222
2323
tag=$(git describe --tags --abbrev=0)
2424
#linux build
2525
release_name_linux="cocommit_go-$tag-linux"
2626
27-
tar -C ./dist -czvf "${release_name_linux}.tar.gz" ./cocommit_go-linux ./author.txt
27+
tar -C ./dist -czvf "${release_name_linux}.tar.gz" cocommit_go-linux ./author.txt
2828
2929
#windows build
3030
release_name_win="cocommit_go-$tag-win"
31-
tar -C ./dist -czvf "${release_name_win}.tar.gz" ./cocommit_go-windows ./author.txt
31+
tar -C ./dist -czvf "${release_name_win}.tar.gz" cocommit_go-windows ./author.txt
3232
3333
#mac build
3434
release_name_mac="cocommit_go-$tag-mac"
35-
tar -C ./dist -czvf "${release_name_mac}.tar.gz" ./cocommit_go-darwin ./author.txt
35+
tar -C ./dist -czvf "${release_name_mac}.tar.gz" cocommit_go-darwin ./author.txt
3636
- name: Release project
3737
uses: softprops/action-gh-release@v1
3838
with:

0 commit comments

Comments
 (0)