From c193a615067b2ce883c5d7bd07444b5cce6786ff Mon Sep 17 00:00:00 2001 From: hekki Date: Thu, 14 Nov 2024 16:07:06 +0900 Subject: [PATCH] use --clean option --- .github/workflows/release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 6eb1711..4ac6b85 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -2,7 +2,7 @@ name: Release on: push: - tags: 'v[0-9]+.[0-9]+.[0-9]+' + tags: "v[0-9]+.[0-9]+.[0-9]+" env: GOPROXY: https://proxy.golang.org @@ -20,12 +20,12 @@ jobs: - name: Set up Go uses: actions/setup-go@v5 with: - go-version-file: 'go.mod' + go-version-file: "go.mod" - name: Run GoReleaser uses: goreleaser/goreleaser-action@v6 with: version: latest - args: release --rm-dist + args: release --clean env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}