fixed yml workflow hopefully #7
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build Binary & Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
- uses: actions/checkout@v3 | |
- run: go get dagger.io/dagger@latest | |
- run: mkdir dist | |
- run: go run ci/build_test_release.go | |
- name: publish project | |
shell: bash | |
run: | | |
tag=$(git describe --tags --abbrev=0) | |
#linux build | |
release_name_linux="cocommit_go-$tag-linux" | |
tar -C ./dist -czvf "${release_name_linux}.tar.gz" ./dist/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 | |
#mac build | |
release_name_mac="cocommit_go-$tag-mac" | |
tar -C ./dist -czvf "${release_name_mac}.tar.gz" ./dist/cocommit_go-darwin ./author.txt | |
- name: Release project | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: "*.tar.gz" | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |