From 4d3e2cb4cddcdcaca8d9d5665e1827cc0212e71e Mon Sep 17 00:00:00 2001 From: Steven Enamakel Date: Wed, 4 Feb 2026 14:13:09 +0530 Subject: [PATCH] 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. --- .github/workflows/package-and-publish.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/package-and-publish.yml b/.github/workflows/package-and-publish.yml index 5ac0a9bde..802e53031 100644 --- a/.github/workflows/package-and-publish.yml +++ b/.github/workflows/package-and-publish.yml @@ -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: |