fix secrets path
Some checks failed
Build Debian Packages / Build .deb for ${{ matrix.target }} (amd64, x86_64-unknown-linux-gnu) (push) Has been cancelled
Build Debian Packages / Build .deb for ${{ matrix.target }} (arm64, aarch64-unknown-linux-gnu) (push) Has been cancelled
Build Debian Packages / Build .deb for ${{ matrix.target }} (armhf, armv7-unknown-linux-gnueabihf) (push) Has been cancelled
Build Debian Packages / Build .deb for ${{ matrix.target }} (riscv64, riscv64gc-unknown-linux-gnu) (push) Has been cancelled
CI / build (ubuntu-latest) (push) Has been cancelled
CI / build (windows-latest) (push) Has been cancelled
Build Debian Packages / Combine all .deb packages (push) Has been cancelled
Build Debian Packages / Publish to APT Repository (push) Has been cancelled
Build Debian Packages / Create GitHub Release (push) Has been cancelled

This commit is contained in:
jasonwitty 2025-11-24 10:20:59 -08:00
parent 4eddb19d59
commit f5d267c08a

View File

@ -314,8 +314,19 @@ jobs:
done done
done done
- name: Set GPG available flag
id: check_gpg
env:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
run: |
if [ -n "$GPG_PRIVATE_KEY" ]; then
echo "available=true" >> $GITHUB_OUTPUT
else
echo "available=false" >> $GITHUB_OUTPUT
fi
- name: Import GPG key - name: Import GPG key
if: ${{ secrets.GPG_PRIVATE_KEY != '' }} if: steps.check_gpg.outputs.available == 'true'
env: env:
GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }} GPG_PRIVATE_KEY: ${{ secrets.GPG_PRIVATE_KEY }}
run: | run: |
@ -323,7 +334,7 @@ jobs:
gpg --list-secret-keys gpg --list-secret-keys
- name: Sign repository - name: Sign repository
if: ${{ secrets.GPG_PRIVATE_KEY != '' }} if: steps.check_gpg.outputs.available == 'true'
env: env:
GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }} GPG_KEY_ID: ${{ secrets.GPG_KEY_ID }}
GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }} GPG_PASSPHRASE: ${{ secrets.GPG_PASSPHRASE }}
@ -345,7 +356,7 @@ jobs:
echo "✓ Repository signed" echo "✓ Repository signed"
- name: Create unsigned repository notice - name: Create unsigned repository notice
if: ${{ secrets.GPG_PRIVATE_KEY == '' }} if: steps.check_gpg.outputs.available == 'false'
run: | run: |
echo "⚠️ Warning: GPG_PRIVATE_KEY not set. Repository will be UNSIGNED." echo "⚠️ Warning: GPG_PRIVATE_KEY not set. Repository will be UNSIGNED."
echo "⚠️ Add GPG secrets to sign the repository automatically." echo "⚠️ Add GPG secrets to sign the repository automatically."