Skip to content

Commit feacc9f

Browse files
Fix release
1 parent a01dc75 commit feacc9f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/release.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# This GitHub action can publish assets for release when a tag is created.
22
# Currently its setup to run on any tag that matches the pattern "v*" (ie. v0.1.0).
33
#
4-
# This uses an action (crazy-max/ghaction-import-gpg) that assumes you set your
4+
# This uses an action (paultyng/ghaction-import-gpg) that assumes you set your
55
# private key in the `GPG_PRIVATE_KEY` secret and passphrase in the `PASSPHRASE`
66
# secret. If you would rather own your own GPG handling, please fork this action
77
# or use an alternative one for key handling.
@@ -34,9 +34,9 @@ jobs:
3434
- name: Import GPG key
3535
id: import_gpg
3636
uses: crazy-max/[email protected]
37-
env:
38-
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
39-
PASSPHRASE: ${{ secrets.PASSPHRASE }}
37+
with:
38+
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
39+
passphrase: ${{ secrets.PASSPHRASE }}
4040
- name: Run GoReleaser
4141
uses: goreleaser/goreleaser-action@v6
4242
with:

0 commit comments

Comments
 (0)