mirror of
https://github.com/tgstation/tgstation-server.git
synced 2026-07-19 20:13:45 +01:00
Fix gpg key import
This commit is contained in:
@@ -888,9 +888,10 @@ jobs:
|
||||
|
||||
- name: Import GPG Key
|
||||
run: |
|
||||
gpg --import build/package/public.pgp
|
||||
echo ${{ secrets.PACKAGING_PRIVATE_KEY }} > private.pgp
|
||||
gpg --import private.pgp
|
||||
sudo apt-get update
|
||||
sudo apt-get install -y gnupg2
|
||||
echo "${{ secrets.PACKAGING_PRIVATE_KEY }}" > private.pgp
|
||||
echo ${{ secrets.PACKAGING_PRIVATE_KEY_PASSPHRASE }} | gpg --batch --yes --passphrase-fd 0 --import private.pgp
|
||||
rm private.pgp
|
||||
|
||||
- name: Execute Build Script
|
||||
|
||||
Reference in New Issue
Block a user