fix: branch-ref flag on deploy branch #444
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: goreleaser action | |
on: | |
push: | |
tags: | |
- 'v*' | |
pull_request: | |
jobs: | |
test-suite: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
goversion: | |
- 1.21 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: "0" | |
- name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{matrix.goversion}} | |
- name: Build | |
run: | | |
go install go.uber.org/mock/mockgen@v0.4.0 | |
ARTIFACT_DESTINATION=./builds make build | |
# - name: Check version | |
# run: | | |
# ./builds/lagoon --version | |
goreleaser: | |
needs: test-suite | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
goversion: | |
- 1.21 | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: "0" | |
- | |
name: Set up Go | |
uses: actions/setup-go@v2 | |
with: | |
go-version: ${{matrix.goversion}} | |
- | |
name: Fetch Dependencies | |
run: go mod download | |
- | |
name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v6 | |
with: | |
version: v2 | |
args: release --verbose --skip=validate --snapshot | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_ACTION_PAT }} | |
GOVERSION: ${{ matrix.goversion }} | |
LOCAL_ORG: ${{ github.repository_owner }} |