diff options
author | Christoph Settgast <csett86@web.de> | 2022-02-18 07:32:23 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-02-18 07:32:23 +0100 |
commit | d43e0069d0191aafdab1641d36175994a78ad572 (patch) | |
tree | 08dd0a33fb96f583211ab8c717ced9c1092ab1bc | |
parent | 2fced74db83c57ce812f4a54b12b326eb1db0647 (diff) |
ci(mac): fix sign & notarize setup (#717)v2022.2.1
-rw-r--r-- | .github/workflows/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bfb9596..7bcad4f 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -42,8 +42,8 @@ jobs: node-version: '16' - name: Prepare for app signing and notarization env: - API_KEY: ${{ secrets.api_key }} - if: ${{ env.API_KEY }} + MAC_CERT_PASSWORD: ${{ secrets.mac_cert_password }} + if: ${{ env.MAC_CERT_PASSWORD }} run: | echo "CSC_LINK=${{ secrets.mac_cert }}" >> $GITHUB_ENV echo "CSC_KEY_PASSWORD=${{ secrets.mac_cert_password }}" >> $GITHUB_ENV |