mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-27 21:08:00 +00:00
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:
@@ -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: |
|
||||
|
||||
Reference in New Issue
Block a user