File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff 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 :
You can’t perform that action at this time.
0 commit comments