Skip to content

Commit

Permalink
Fix: Fixes GoReleaser Action (#363)
Browse files Browse the repository at this point in the history
* Updates deprecated args

* Fixes config file

* Updates args

* Pinned version
  • Loading branch information
CGoodwin90 authored Jul 24, 2024
1 parent 7fab24a commit 8dea96d
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -53,10 +53,10 @@ jobs:
run: go mod download
-
name: Run GoReleaser
uses: goreleaser/goreleaser-action@v2
uses: goreleaser/goreleaser-action@v6
with:
version: v1.25.1
args: release --debug --skip-validate
version: v2
args: release --verbose --skip=validate --snapshot
env:
GITHUB_TOKEN: ${{ secrets.GH_ACTION_PAT }}
GOVERSION: ${{ matrix.goversion }}
Expand Down
6 changes: 4 additions & 2 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
version: 2

env:
- GO111MODULE=on
- GOPROXY=https://gocenter.io
Expand Down Expand Up @@ -94,7 +96,7 @@ changelog:

brews:
- name: lagoon
tap:
repository:
owner: "{{ .Env.LOCAL_ORG }}"
name: homebrew-lagoon-cli
homepage: "https://github.com/{{ .Env.LOCAL_ORG }}/lagoon-cli"
Expand All @@ -103,4 +105,4 @@ brews:
test: system "#{bin}/lagoon version"
install: bin.install "lagoon"
ids:
- binaries-targz
- binaries-targz

0 comments on commit 8dea96d

Please sign in to comment.