Skip to content

Commit

Permalink
Might have fixed problem
Browse files Browse the repository at this point in the history
  • Loading branch information
Slug-Boi committed Mar 5, 2024
1 parent 5c3d7b6 commit 84b46e7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build_test_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@ jobs:
- name: publish project
shell: bash
run: |
ls -la ./dist
cp ./src_code/go_src/author.txt ./dist
tag=$(git describe --tags --abbrev=0)
#linux build
release_name_linux="cocommit_go-$tag-linux"
tar -C ./dist -czvf "${release_name_linux}.tar.gz" ./cocommit_go-linux ./author.txt
tar -C ./dist -czvf "${release_name_linux}.tar.gz" cocommit_go-linux ./author.txt
#windows build
release_name_win="cocommit_go-$tag-win"
tar -C ./dist -czvf "${release_name_win}.tar.gz" ./cocommit_go-windows ./author.txt
tar -C ./dist -czvf "${release_name_win}.tar.gz" cocommit_go-windows ./author.txt
#mac build
release_name_mac="cocommit_go-$tag-mac"
tar -C ./dist -czvf "${release_name_mac}.tar.gz" ./cocommit_go-darwin ./author.txt
tar -C ./dist -czvf "${release_name_mac}.tar.gz" cocommit_go-darwin ./author.txt
- name: Release project
uses: softprops/action-gh-release@v1
with:
Expand Down

0 comments on commit 84b46e7

Please sign in to comment.