We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac76716 commit d401201Copy full SHA for d401201
.github/workflows/go.yml
@@ -52,7 +52,7 @@ jobs:
52
uses: goreleaser/[email protected]
53
with:
54
version: latest
55
- args: release --clean --snapshot --skip-publish
+ args: release --clean --snapshot --skip=publish
56
env:
57
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
58
golangci-lint:
rules.mk
@@ -101,7 +101,7 @@ INSTALL_STEPS += go.install
101
.PHONY: go.release
102
go.release:
103
$(call check-program, goreleaser)
104
- goreleaser --snapshot --skip-publish --rm-dist
+ goreleaser --snapshot --skip=publish --rm-dist
105
@echo -n "Do you want to release? [y/N] " && read ans && \
106
if [ $${ans:-N} = y ]; then set -xe; goreleaser --rm-dist; fi
107
RELEASE_STEPS += go.release
0 commit comments