feat(forge): rpm signing

This commit is contained in:
Elian Doran
2025-08-14 10:25:11 +03:00
parent ec74f5f1de
commit e2b13573ae
4 changed files with 11 additions and 2 deletions

View File

@@ -55,6 +55,12 @@ runs:
security set-keychain-settings -t 3600 -l build-app-${{ github.run_id }}.keychain
security set-keychain-settings -t 3600 -l build-installer-${{ github.run_id }}.keychain
- name: Import GPG signing key
if: inputs.os == 'linux'
shell: ${{ inputs.shell }}
run: |
echo -n "$GPG_SIGNING_KEY" | base64 --decode | gpg --import
- name: Set up Python and other macOS dependencies
if: ${{ inputs.os == 'macos' }}
shell: ${{ inputs.shell }}