ci: update build release workflow to include arm darwin and removed version from tar

the version number was removed from the tar to support new update
command
This commit is contained in:
Slug-Boi
2024-11-28 13:31:04 +01:00
parent 3d06dddf22
commit d90ab2d809
2 changed files with 15 additions and 5 deletions
+3 -4
View File
@@ -40,18 +40,17 @@ jobs:
run: |
cp ./src/author.txt ./dist
tag=$(git describe --tags --abbrev=0)
#linux build
release_name_linux="cocommit_go-$tag-linux"
release_name_linux="cocommit-linux"
tar -C ./dist -czvf "${release_name_linux}.tar.gz" cocommit_go-linux ./author.txt
#windows build
release_name_win="cocommit_go-$tag-win"
release_name_win="cocommit-win"
tar -C ./dist -czvf "${release_name_win}.tar.gz" cocommit_go-windows ./author.txt
#mac build
release_name_mac="cocommit_go-$tag-mac"
release_name_mac="cocommit-darwin-x86_64"
tar -C ./dist -czvf "${release_name_mac}.tar.gz" cocommit_go-darwin ./author.txt
- name: Release project
uses: softprops/action-gh-release@v1