From 8f95d0a985f6dc1723209749bf2b80d8f10cf325 Mon Sep 17 00:00:00 2001 From: Shunsuke Suzuki Date: Thu, 21 Dec 2023 10:22:36 +0900 Subject: [PATCH] ci: replace --rm-dist with --clean MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --rm-dist was deprecated. ``` • DEPRECATED: --rm-dist was deprecated in favor of --clean, check https://goreleaser.com/deprecations#-rm-dist for more details ``` https://goreleaser.com/deprecations#-rm-dist --- .github/workflows/goreleaser.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/goreleaser.yml b/.github/workflows/goreleaser.yml index 2d11b0a..5c4d3ca 100644 --- a/.github/workflows/goreleaser.yml +++ b/.github/workflows/goreleaser.yml @@ -21,6 +21,6 @@ jobs: uses: goreleaser/goreleaser-action@v2 with: version: v1.22.1 - args: release --rm-dist + args: release --clean env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}