Build, Test and Release Binaries #18
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, Test and Release Binaries | |
on: | |
push: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21 | |
- name: Extract EXPORTER_VERSION | |
id: extract_exporter_version | |
run: echo "::set-output name=version::$(cat VERSION)" | |
- name: Run Tests | |
run: go test ./... | |
release: | |
if: startsWith(github.event.ref, 'refs/tags/v') | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v3 | |
- name: Setup Go | |
uses: actions/setup-go@v3 | |
with: | |
go-version: 1.21 | |
- name: Extract EXPORTER_VERSION | |
id: extract_exporter_version | |
run: echo "::set-output name=version::$(cat VERSION)" | |
- name: Run Goreleaser | |
if: ${{ github.event_name != 'pull_request' }} | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
EXPORTER_VERSION: ${{ steps.extract_exporter_version.outputs.version }} | |
uses: goreleaser/goreleaser-action@v3 | |
with: | |
version: latest | |
args: release --clean |