From 963665081e7c9cbfb5606cb89dcf94d3f88bd6a0 Mon Sep 17 00:00:00 2001 From: hmlanigan Date: Mon, 11 Sep 2023 12:03:41 -0400 Subject: [PATCH] use --clean, rather than deprecated --rm-dist MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Resolving output seen in the v0.9.0 run of this GitHub action, --rm-dist is deprecated: • DEPRECATED: --rm-dist was deprecated in favor of --clean, check https://goreleaser.com/deprecations#-rm-dist for more details --- .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 ee203ed9..8294fff4 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,7 @@ jobs: - name: Run GoReleaser uses: goreleaser/goreleaser-action@v4 with: - args: release --rm-dist + args: release --clean env: # GitHub sets the GITHUB_TOKEN secret automatically. GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}