fixed yml workflow hopefully

This commit is contained in:
Theis
2024-03-05 09:40:27 +01:00
parent bb3b830b4b
commit a02cd815de
+5 -4
View File
@@ -13,24 +13,25 @@ jobs:
uses: actions/setup-go@v3 uses: actions/setup-go@v3
- uses: actions/checkout@v3 - uses: actions/checkout@v3
- run: go get dagger.io/dagger@latest - run: go get dagger.io/dagger@latest
- run: mkdir dist - run: mkdir /dist
- run: go run ci/build_test_release.go - run: go run ci/build_test_release.go
- name: publish project - name: publish project
shell: bash shell: bash
run: | run: |
tag=$(git describe --tags --abbrev=0) tag=$(git describe --tags --abbrev=0)
#linux build #linux build
release_name_linux="cocommit_go-$tag-linux" 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" /dist/cocommit_go-linux ./author.txt
#windows build #windows build
release_name_win="cocommit_go-$tag-win" 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" /dist/cocommit_go-windows ./author.txt
#mac build #mac build
release_name_mac="cocommit_go-$tag-mac" 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" /dist/cocommit_go-darwin ./author.txt
- name: Release project - name: Release project
uses: softprops/action-gh-release@v1 uses: softprops/action-gh-release@v1
with: with: