Skip to content

Commit

Permalink
Fix goreleaser version (#515)
Browse files Browse the repository at this point in the history
Apparently goreleaser 2 has deprecated our config file, just revert to a fixed prior vsn for now
  • Loading branch information
michaeljguarino authored Jun 6, 2024
1 parent c54b6da commit a162196
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -439,10 +439,10 @@ jobs:
sudo apt update
sudo apt install -y libwebkit2gtk-4.0-dev libgtk-3-dev
- name: GoReleaser (Build)
uses: goreleaser/goreleaser-action@v4
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser-pro
version: latest
version: "~> v1"
args: release --clean --split --timeout 90m
env:
CGO_LDFLAGS: "${{ matrix.goos == 'darwin' && '-framework UniformTypeIdentifiers' || '' }}"
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/goreleaser-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,10 +52,10 @@ jobs:
env:
INPUT_PREFIX: v
- name: GoReleaser (Build)
uses: goreleaser/goreleaser-action@v4
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser-pro
version: latest
version: "~> v1"
args: release --clean --split --timeout 90m
env:
CGO_LDFLAGS: "${{ matrix.goos == 'darwin' && '-framework UniformTypeIdentifiers' || '' }}"
Expand Down Expand Up @@ -107,11 +107,11 @@ jobs:
env:
INPUT_PREFIX: v
- name: GoReleaser (Release)
uses: goreleaser/goreleaser-action@v4
uses: goreleaser/goreleaser-action@v6
if: steps.cache.outputs.cache-hit != 'true' # do not run if cache hit
with:
distribution: goreleaser-pro
version: latest
version: "~> v1"
args: continue --merge --timeout 90m
env:
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
Expand Down

0 comments on commit a162196

Please sign in to comment.