Skip to content

Commit

Permalink
Merge pull request #6 from jaymeh/add_signing
Browse files Browse the repository at this point in the history
fix: syntax error when building GPG functionality.
  • Loading branch information
jaymeh authored Sep 2, 2022
2 parents 00cad05 + 54deb92 commit d7e491f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,9 @@ jobs:

- name: Create GPG signature of PHAR
run: |
- echo $DECRYPT_KEY | gpg --passphrase-fd 0 keys.asc.gpg
- gpg --batch --yes --import keys.asc
- echo $SIGN_KEY | gpg --passphrase-fd 0 -u 00D81146 --armor --detach-sig builds/changelog-checker.phar
echo $DECRYPT_KEY | gpg --passphrase-fd 0 keys.asc.gpg
gpg --batch --yes --import keys.asc
echo $SIGN_KEY | gpg --passphrase-fd 0 -u 00D81146 --armor --detach-sig builds/changelog-checker.phar
env:
SIGN_KEY: ${{ secrets.SIGN_KEY }}
DECRYPT_KEY: ${{ secrets.DECRYPT_KEY }}
Expand Down

0 comments on commit d7e491f

Please sign in to comment.