Skip to content

Commit 6f1346f

Browse files
authored
Fix: Change goreleaser flag from --rm-dist to --clean (#1984)
Fixing a release with maintainer permissions
1 parent 70ee634 commit 6f1346f

File tree

3 files changed

+2
-7
lines changed

3 files changed

+2
-7
lines changed

.github/workflows/goreleaser.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
uses: goreleaser/goreleaser-action@v6
2323
with:
2424
version: latest
25-
args: release --rm-dist
25+
args: release --clean
2626
env:
2727
DATE: ${{ steps.date.outputs.date }}
2828
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

go.mod

+1-5
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ require (
1111
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.11.1
1212
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.7.0
1313
github.com/Azure/azure-storage-blob-go v0.10.0
14-
github.com/Azure/go-autorest/autorest/adal v0.9.23
1514
github.com/BurntSushi/toml v1.0.0
1615
github.com/DataDog/opencensus-go-exporter-datadog v0.0.0-20180917103902-e6c7f767dc57
1716
github.com/aws/aws-sdk-go-v2 v1.26.1
@@ -60,10 +59,7 @@ require (
6059
cloud.google.com/go/monitoring v1.18.0 // indirect
6160
cloud.google.com/go/trace v1.10.5 // indirect
6261
github.com/Azure/azure-sdk-for-go/sdk/internal v1.8.0 // indirect
63-
github.com/Azure/go-autorest v14.2.0+incompatible // indirect
64-
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect
65-
github.com/Azure/go-autorest/logger v0.2.1 // indirect
66-
github.com/Azure/go-autorest/tracing v0.6.0 // indirect
62+
github.com/Azure/go-autorest/autorest/adal v0.9.23 // indirect
6763
github.com/AzureAD/microsoft-authentication-library-for-go v1.2.2 // indirect
6864
github.com/DataDog/datadog-go v0.0.0-20180822151419-281ae9f2d895 // indirect
6965
github.com/agext/levenshtein v1.2.1 // indirect

go.sum

-1
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,6 @@ github.com/Azure/go-autorest/autorest/date v0.3.0/go.mod h1:BI0uouVdmngYNUzGWeSY
8181
github.com/Azure/go-autorest/autorest/mocks v0.1.0/go.mod h1:OTyCOPRA2IgIlWxVYxBee2F5Gr4kF2zd2J5cFRaIDN0=
8282
github.com/Azure/go-autorest/autorest/mocks v0.2.0/go.mod h1:OTyCOPRA2IgIlWxVYxBee2F5Gr4kF2zd2J5cFRaIDN0=
8383
github.com/Azure/go-autorest/autorest/mocks v0.3.0/go.mod h1:a8FDP3DYzQ4RYfVAxAN3SVSiiO77gL2j2ronKKP0syM=
84-
github.com/Azure/go-autorest/autorest/mocks v0.4.1 h1:K0laFcLE6VLTOwNgSxaGbUcLPuGXlNkbVvq4cW4nIHk=
8584
github.com/Azure/go-autorest/autorest/mocks v0.4.1/go.mod h1:LTp+uSrOhSkaKrUy935gNZuuIPPVsHlr9DSOxSayd+k=
8685
github.com/Azure/go-autorest/logger v0.1.0/go.mod h1:oExouG+K6PryycPJfVSxi/koC6LSNgds39diKLz7Vrc=
8786
github.com/Azure/go-autorest/logger v0.2.1 h1:IG7i4p/mDa2Ce4TRyAO8IHnVhAVF3RFU+ZtXWSmf4Tg=

0 commit comments

Comments
 (0)