Build support tools binaries #7
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 support tools binaries | |
on: | |
push: | |
tags: | |
- '*' | |
workflow_dispatch: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
setup: | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout sources | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: setup golang | |
uses: actions/setup-go@v2 | |
id: go | |
with: | |
go-version: 1.22.4 | |
build: | |
needs: [setup] | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout sources | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: build tools' binaries | |
run: make build-tools-all | |
- name: release the binaries | |
uses: ncipollo/release-action@v1 | |
with: | |
artifacts: bin/. | |
tag: test-tools-tag |