File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
# This GitHub action can publish assets for release when a tag is created.
2
2
# Currently its setup to run on any tag that matches the pattern "v*" (ie. v0.1.0).
3
3
#
4
- # This uses an action (paultyng /ghaction-import-gpg) that assumes you set your
4
+ # This uses an action (crazy-max /ghaction-import-gpg) that assumes you set your
5
5
# private key in the `GPG_PRIVATE_KEY` secret and passphrase in the `PASSPHRASE`
6
6
# secret. If you would rather own your own GPG handling, please fork this action
7
7
# or use an alternative one for key handling.
@@ -33,15 +33,15 @@ jobs:
33
33
go-version : ' 1.21'
34
34
- name : Import GPG key
35
35
id : import_gpg
36
- uses : paultyng /ghaction-import-gpg@v2 .1.0
36
+ uses : crazy-max /ghaction-import-@v6 .1.0
37
37
env :
38
38
GPG_PRIVATE_KEY : ${{ secrets.GPG_PRIVATE_KEY }}
39
39
PASSPHRASE : ${{ secrets.PASSPHRASE }}
40
40
- name : Run GoReleaser
41
41
uses : goreleaser/goreleaser-action@v6
42
42
with :
43
43
version : latest
44
- args : release --rm-dist
44
+ args : release --clean
45
45
env :
46
46
GPG_FINGERPRINT : ${{ steps.import_gpg.outputs.fingerprint }}
47
47
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
Original file line number Diff line number Diff line change @@ -74,4 +74,4 @@ release:
74
74
# If you want to manually examine the release before it's live, uncomment this line:
75
75
draft : true
76
76
changelog :
77
- skip : true
77
+ disable : true
You can’t perform that action at this time.
0 commit comments