v0.13.0 #21
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
on: | |
# https://docs.github.com/en/actions/reference/events-that-trigger-workflows#release | |
release: | |
types: [created] | |
name: Build Release | |
env: | |
GO_VERSION: "~1" | |
TASK_VERSION: v3.11.0 | |
TASK_SUM: 8284fa89367e0bbb8ba5dcb90baa6826b7669c4a317e5b9a46711f7380075e21 | |
jobs: | |
release: | |
name: Build binaries | |
runs-on: ubuntu-latest | |
steps: | |
# | |
- name: Install Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ env.GO_VERSION }} | |
check-latest: true | |
# | |
- name: Tooling(checksum) | |
run: go install github.com/mdouchement/checksum@master | |
- name: Tooling(Taskfile) | |
run: | | |
curl -LO https://github.com/go-task/task/releases/download/${{ env.TASK_VERSION }}/task_linux_amd64.tar.gz && \ | |
echo "${{ env.TASK_SUM }} task_linux_amd64.tar.gz" | sha256sum -c && \ | |
tar -xf task_linux_amd64.tar.gz && \ | |
cp task /usr/local/bin/ | |
# | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
# | |
- name: Build binaries | |
run: task build-all | |
# | |
- name: Update release | |
run: go run .github/workflows/release.go | |
env: | |
# secrets.GITHUB_TOKEN is created by GH action and is limited to the repository | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |