Skip to content

Commit d500627

Browse files
committed
make/ci: fix goreleaser
--rm-dist has been replaced by --clean. See https://goreleaser.com/deprecations/#-rm-dist Signed-off-by: Jean-Louis Dupond <jean-louis@dupond.be>
1 parent 60c8b63 commit d500627

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
uses: goreleaser/goreleaser-action@v6
9999
with:
100100
version: latest
101-
args: release --rm-dist
101+
args: release --clean
102102
env:
103103
GPG_FINGERPRINT: ${{ steps.import_gpg.outputs.fingerprint }}
104104
GPG_PASSWORD: ${{ secrets.PASSPHRASE }}

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ build:
1212
go build -o ${BINARY}
1313

1414
release:
15-
goreleaser release --rm-dist --snapshot --skip-publish --skip-sign
15+
goreleaser release --clean --snapshot --skip-publish --skip-sign
1616

1717
install: build
1818
mkdir -p ~/.terraform.d/plugins/${HOSTNAME}/${NAMESPACE}/${NAME}/${VERSION}/${OS_ARCH}

0 commit comments

Comments
 (0)