fix: correct syntax for accessing secrets in CI workflow

- Updated the condition for re-signing the macOS app in the package-and-publish.yml file to use the correct syntax for accessing secrets, ensuring proper functionality during the CI process.
This commit is contained in:
Steven Enamakel
2026-02-04 14:13:09 +05:30
parent 1a9017557b
commit 4d3e2cb4cd
+1 -1
View File
@@ -327,7 +327,7 @@ jobs:
# Re-sign the app after modifying the bundle (required for notarization)
- name: Re-sign macOS app after TDLib bundling
if: matrix.settings.platform == 'macos-latest' && secrets.APPLE_SIGNING_IDENTITY != ''
if: matrix.settings.platform == 'macos-latest' && ${{ secrets.APPLE_SIGNING_IDENTITY }} != ''
env:
APPLE_SIGNING_IDENTITY: ${{ secrets.APPLE_SIGNING_IDENTITY }}
run: |