fix: list and get environment and project to display same data #408
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 github.com/golang/mock/[email protected] | |
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@v2 | |
with: | |
version: v1.25.1 | |
args: release --debug --skip-validate | |
env: | |
GITHUB_TOKEN: ${{ secrets.GH_ACTION_PAT }} | |
GOVERSION: ${{ matrix.goversion }} | |
LOCAL_ORG: ${{ github.repository_owner }} |