mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 17:08:53 +00:00
Lock goreleaser version in CI to ~> 1 (#19529)
A few days ago, a new major version of goreleaser was published, which is currently breaking our workflows: ``` ⨯ command failed error=unknown flag: --rm-dist ``` This locks the version to a max satisfying semver under 1 until we have time to update to the new major.
This commit is contained in:
parent
1045136cb1
commit
a24e665c13
2 changed files with 2 additions and 2 deletions
2
.github/workflows/goreleaser-fleet.yaml
vendored
2
.github/workflows/goreleaser-fleet.yaml
vendored
|
|
@ -76,7 +76,7 @@ jobs:
|
|||
uses: goreleaser/goreleaser-action@f82d6c1c344bcacabba2c841718984797f664a6b
|
||||
with:
|
||||
distribution: goreleaser-pro
|
||||
version: latest
|
||||
version: "~> 1"
|
||||
args: release --rm-dist -f .goreleaser.yml
|
||||
env:
|
||||
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
|
||||
|
|
|
|||
|
|
@ -72,7 +72,7 @@ jobs:
|
|||
uses: goreleaser/goreleaser-action@f82d6c1c344bcacabba2c841718984797f664a6b
|
||||
with:
|
||||
distribution: goreleaser-pro
|
||||
version: latest
|
||||
version: "~> 1"
|
||||
args: release --snapshot --rm-dist -f .goreleaser-snapshot.yml
|
||||
env:
|
||||
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
|
||||
|
|
|
|||
Loading…
Reference in a new issue