We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2772677 commit fabbe15Copy full SHA for fabbe15
.github/workflows/ci.yaml
@@ -148,8 +148,12 @@ jobs:
148
- name: Install GoReleaser
149
uses: goreleaser/goreleaser-action@ec59f474b9834571250b370d4735c50f8e2d1e29 # v7.0.0
150
with:
151
- args: check
152
- # We also rely upon it being installed, for the `task release:snapshot` below
+ install-only: true
+ # if we use 'args: check' then it doesn't _also_ install.
153
+ # `install-only` might lead one to infer that it is always installed and we're cutting back, but no.
154
+
155
+ - name: Validate goreleaser config
156
+ run: goreleaser check
157
158
- name: Test snapshot build
159
run: task release:snapshot
0 commit comments