Skip to content

Commit

Permalink
CI
Browse files Browse the repository at this point in the history
  • Loading branch information
larousso committed Sep 20, 2022
1 parent b3651ce commit 1b69f4e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,9 @@ jobs:
- name: Decode GPG Key
run: |
mkdir -p ~/.gradle/
echo "${{secrets.PGP_SECRET}}" > ~/.gradle/secring.gpg
echo "${{secrets.PGP_SECRET}}" > ~/.gradle/secring.key
gpg --batch --pinentry-mode=loopback --yes --passphrase ${{ secrets.PGP_PASSPHRASE }} --import ~/.gradle/secring.key
gpg --batch --pinentry-mode=loopback --yes --passphrase ${{ secrets.PGP_PASSPHRASE }} --export-secret-key D546AEC36F94B3078E33900CE856678CF07E3809 > ~/.gradle/secring.gpg
# echo "${{secrets.PGP_SECRET}}" > ~/.gradle/secring.gpg.b64
# base64 -d ~/.gradle/secring.gpg.b64 > ~/.gradle/secring.gpg
- name: Publish
Expand Down

0 comments on commit 1b69f4e

Please sign in to comment.