Skip to content

Commit

Permalink
try4
Browse files Browse the repository at this point in the history
  • Loading branch information
JustJoostNL committed Sep 19, 2023
1 parent b5c958f commit 3c1f94a
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,10 +29,9 @@ jobs:
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_ID_PASS: ${{ secrets.APPLE_ID_PASS }}
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_ID_PASS }}
CSC_LINK: ${{ secrets.CSC_LINK }}
CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
# we don't have a Windows code signing certificate yet so when platform is windows, we set CSC_IDENTITY_AUTO_DISCOVERY to false
CSC_IDENTITY_AUTO_DISCOVERY: ${{ matrix.os != 'windows-latest' }}
# we don't have a Windows code signing certificate yet so when platform is windows, we don't want the CSC_LINK and CSC_KEY_PASSWORD env vars to be set
CSC_LINK: ${{ matrix.os == 'windows-latest' && secrets.CSC_LINK }}
CSC_KEY_PASSWORD: ${{ matrix.os == 'windows-latest' && secrets.CSC_KEY_PASSWORD }}
with:
# GitHub token, automatically provided to the action
# (No need to define this secret in the repo settings)
Expand Down

0 comments on commit 3c1f94a

Please sign in to comment.