Skip to content

Commit 11f8df1

Browse files
committed
fix(workflows): fix gpg_private_key input
1 parent c62e8c7 commit 11f8df1

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
id: import_gpg
4242
uses: crazy-max/ghaction-import-gpg@v3
4343
with:
44-
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
44+
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
4545
passphrase: ${{ secrets.PGP_PASSPHRASE }}
4646

4747
- name: GPG user IDs
@@ -88,7 +88,7 @@ jobs:
8888
id: import_gpg
8989
uses: crazy-max/ghaction-import-gpg@v3
9090
with:
91-
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
91+
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
9292
passphrase: ${{ secrets.PGP_PASSPHRASE }}
9393

9494
- name: GPG user IDs
@@ -136,7 +136,7 @@ jobs:
136136
id: import_gpg
137137
uses: crazy-max/ghaction-import-gpg@v3
138138
with:
139-
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
139+
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
140140
passphrase: ${{ secrets.PGP_PASSPHRASE }}
141141

142142
- name: GPG user IDs

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
id: import_gpg
4242
uses: crazy-max/ghaction-import-gpg@v6
4343
with:
44-
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
44+
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
4545
passphrase: ${{ secrets.PGP_PASSPHRASE }}
4646

4747
- name: GPG user IDs
@@ -90,7 +90,7 @@ jobs:
9090
id: import_gpg
9191
uses: crazy-max/ghaction-import-gpg@v6
9292
with:
93-
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
93+
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
9494
passphrase: ${{ secrets.PGP_PASSPHRASE }}
9595

9696
- name: GPG user IDs
@@ -138,7 +138,7 @@ jobs:
138138
id: import_gpg
139139
uses: crazy-max/ghaction-import-gpg@v6
140140
with:
141-
gpg-private-key: ${{ secrets.GPG_PRIVATE_KEY }}
141+
gpg_private_key: ${{ secrets.GPG_PRIVATE_KEY }}
142142
passphrase: ${{ secrets.PGP_PASSPHRASE }}
143143

144144
- name: GPG user IDs

0 commit comments

Comments
 (0)