Skip to content

Commit

Permalink
Use correct env vars names for Mac + Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrossy committed Sep 1, 2023
1 parent dda704a commit d197d0b
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/bundle-desktop.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,17 @@ jobs:
- name: Build on Mac
run: yarn electron-builder --mac --publish never
env:
CSC_LINK: ${{ secrets.MAC_CSC_LINK2 }}
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 == 'macOS'

- name: Build on Windows
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 }}
# env:
# CSC_LINK: ${{ secrets.WINDOWS_CSC_LINK }}
# CSC_KEY_PASSWORD: ${{ secrets.WINDOWS_CSC_KEY_PASSWORD }}
if: runner.os == 'Windows'

- name: Install deps for Linux
Expand Down

0 comments on commit d197d0b

Please sign in to comment.