Skip to content

Commit 6a898a5

Browse files
committed
Fix goreleaser flag deprecations
* --skip-publish was replaced with --skip=publish * --rm-dist was replaced with --clean https://goreleaser.com/deprecations/#-skip https://goreleaser.com/deprecations/#-rm-dist Signed-off-by: Michael Shen <mishen@umich.edu>
1 parent aa36675 commit 6a898a5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ jobs:
2525
uses: goreleaser/goreleaser-action@v3
2626
with:
2727
version: latest
28-
args: release --snapshot --skip-publish --rm-dist
28+
args: release --snapshot --skip=publish --clean

.github/workflows/release.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ jobs:
2121
uses: goreleaser/goreleaser-action@v3
2222
with:
2323
version: latest
24-
args: release --rm-dist
24+
args: release --clean
2525
env:
2626
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 commit comments

Comments
 (0)