Skip to content

Commit

Permalink
rm passphrase use for the key
Browse files Browse the repository at this point in the history
  • Loading branch information
hitchhooker committed Apr 3, 2024
1 parent bbeeea9 commit 9f30749
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@ jobs:
- name: Import GPG Key
run: |
echo "${{ secrets.HQ_ROTKO_PGP }}" | gpg --batch --import
env:
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
- name: Configure GPG
run: |
Expand All @@ -51,10 +49,8 @@ jobs:
- name: Sign binary and hash
run: |
gpg --batch --yes --pinentry-mode loopback --passphrase "$GPG_PASSPHRASE" --detach-sign --armor --default-key [email protected] --output dist/genpeerid.sig dist/genpeerid
gpg --batch --yes --pinentry-mode loopback --passphrase "$GPG_PASSPHRASE" --detach-sign --armor --default-key [email protected] --output dist/genpeerid.sha512.sig dist/genpeerid.sha512
env:
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
gpg --batch --yes --pinentry-mode loopback --detach-sign --armor --default-key [email protected] --output dist/genpeerid.sig dist/genpeerid
gpg --batch --yes --pinentry-mode loopback --detach-sign --armor --default-key [email protected] --output dist/genpeerid.sha512.sig dist/genpeerid.sha512
- name: Upload Artifacts
uses: actions/upload-artifact@v2
Expand Down

0 comments on commit 9f30749

Please sign in to comment.