Skip to content

Commit

Permalink
fixed yml workflow hopefully
Browse files Browse the repository at this point in the history
  • Loading branch information
Slug-Boi committed Mar 5, 2024
1 parent a02cd81 commit 67f0c37
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build_test_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:
#linux build
release_name_linux="cocommit_go-$tag-linux"
tar -C ./dist -czvf "${release_name_linux}.tar.gz" /dist/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" /dist/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" /dist/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 67f0c37

Please sign in to comment.