Skip to content

Commit cbfc1ea

Browse files
fix: use --clean instead of deprecated --rm-dist in goreleaser
The --rm-dist flag has been deprecated in GoReleaser and replaced with --clean. This commit updates the .github/workflows/go-release-build.yml file to use the new flag.
1 parent 8b15b16 commit cbfc1ea

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/go-release-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
if: success() && startsWith(github.ref, 'refs/tags/')
4747
with:
4848
version: latest
49-
args: release --rm-dist
49+
args: release --clean
5050
env:
5151
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
5252

0 commit comments

Comments
 (0)