Merge pull request from KManolov3/feature/uepr-40-desktop-feature-parity

fix: only sign macos builds
This commit is contained in:
Kaloyan Manolov 2025-04-30 16:43:12 +03:00 committed by GitHub
commit 1c4aa8fa30
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -23,7 +23,9 @@ jobs:
run:
shell: bash
env:
SCRATCH_SHOULD_SIGN: ${{ github.ref_name == 'develop' }}
# This is a temporary workaround. We're currently having issues signing windows builds
# due to a change of the security policy (see https://github.com/electron/windows-installer/issues/473)
SCRATCH_SHOULD_SIGN: ${{ github.ref_name == 'develop' && matrix.os != 'windows-latest' }}
AC_USERNAME: ${{ (github.ref_name == 'develop' && secrets.AC_USERNAME) || '' }}
AC_PASSWORD: ${{ (github.ref_name == 'develop' && secrets.AC_PASSWORD) || '' }}
steps: