From 18dc6cc7c454d99c62d2ab80d95a13b85ef87c0b Mon Sep 17 00:00:00 2001 From: Mario Minardi Date: Fri, 3 May 2024 12:56:25 -0600 Subject: [PATCH] .github/workflows: use --clean instead of deprecated --rm-dist As per https://goreleaser.com/deprecations/#__tabbed_17_1 `--rm-dist` has been deprecated in favour of `--clean`. Updates #cleanup Signed-off-by: Mario Minardi --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index cccc55c4..f3c986ca 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -48,7 +48,7 @@ jobs: uses: goreleaser/goreleaser-action@v5 with: version: latest - args: release --rm-dist + args: release --clean env: GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }} GITHUB_TOKEN: ${{ github.token }}