Skip to content

Commit f46f8dc

Browse files
Run prePR with sbt-typelevel
Executed command: sbt tlPrePrBotHook
1 parent b75a713 commit f46f8dc

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -182,15 +182,15 @@ jobs:
182182
env:
183183
PGP_SECRET: ${{ secrets.PGP_SECRET }}
184184
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
185-
run: echo $PGP_SECRET | base64 -di | gpg --import
185+
run: echo $PGP_SECRET | base64 -d -i - | gpg --import
186186

187187
- name: Import signing key and strip passphrase
188188
if: env.PGP_SECRET != '' && env.PGP_PASSPHRASE != ''
189189
env:
190190
PGP_SECRET: ${{ secrets.PGP_SECRET }}
191191
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
192192
run: |
193-
echo "$PGP_SECRET" | base64 -di > /tmp/signing-key.gpg
193+
echo "$PGP_SECRET" | base64 -d -i - > /tmp/signing-key.gpg
194194
echo "$PGP_PASSPHRASE" | gpg --pinentry-mode loopback --passphrase-fd 0 --import /tmp/signing-key.gpg
195195
(echo "$PGP_PASSPHRASE"; echo; echo) | gpg --command-fd 0 --pinentry-mode loopback --change-passphrase $(gpg --list-secret-keys --with-colons 2> /dev/null | grep '^sec:' | cut --delimiter ':' --fields 5 | tail -n 1)
196196

0 commit comments

Comments
 (0)