diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3cc00e99..c0640794 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: uses: goreleaser/goreleaser-action@v5 with: version: latest - args: release --snapshot --skip-publish --clean --skip-sign + args: release --snapshot --skip=publish --clean --skip-sign - name: Tar files run: tar -czvf artifacts.tar.gz dist/ - name: Upload artifacts diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cded8ac9..7b28fb5f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: uses: goreleaser/goreleaser-action@v5 with: version: latest - args: release --snapshot --skip-publish --clean --skip-sign + args: release --snapshot --skip=publish --clean --skip-sign goreleaser: name: Run GoReleaser diff --git a/Makefile b/Makefile index b624fe42..575dc90a 100644 --- a/Makefile +++ b/Makefile @@ -8,4 +8,4 @@ vendor: go mod vendor build: - goreleaser release --snapshot --skip-publish --clean --skip-sign \ No newline at end of file + goreleaser release --snapshot --skip=publish --clean --skip-sign \ No newline at end of file