Skip to content

Commit

Permalink
fix: goreleaser skip publish flag change
Browse files Browse the repository at this point in the history
  • Loading branch information
Divkix committed Jul 22, 2024
1 parent f599634 commit 4efd4b1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ vendor:
go mod vendor

build:
goreleaser release --snapshot --skip-publish --clean --skip-sign
goreleaser release --snapshot --skip=publish --clean --skip-sign

0 comments on commit 4efd4b1

Please sign in to comment.