Skip to content

Commit

Permalink
Add missing env vars for mac build
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrossy committed Sep 1, 2023
1 parent 770c28a commit dda704a
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/bundle-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,10 +47,12 @@ jobs:
if: runner.os == 'macOS'

- name: Build on Windows
run: yarn electron-builder --win --publish never || yarn electron-builder --win --publish never
# env:
# CSC_LINK: ${{ secrets.WINDOWS_CSC_LINK2 }}
# CSC_KEY_PASSWORD: ${{ secrets.WINDOWS_CSC_KEY_PASSWORD }}
run: yarn electron-builder --win --publish never
env:
CSC_LINK: ${{ secrets.MAC_CSC_LINK }}
CSC_KEY_PASSWORD: ${{ secrets.MAC_CSC_KEY_PASSWORD }}
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_ID_PASSWORD: ${{ secrets.APPLE_ID_PASSWORD }}
if: runner.os == 'Windows'

- name: Install deps for Linux
Expand Down

0 comments on commit dda704a

Please sign in to comment.