We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c5ac2b1 commit 9ee78a6Copy full SHA for 9ee78a6
.github/workflows/build-electron.yml
@@ -72,11 +72,20 @@ jobs:
72
run: |
73
npm install
74
75
- - name: Build Electron app
+ - name: Build Electron app (macOS)
76
+ if: matrix.os == 'macos-14'
77
78
cd electron
79
npm run build
80
env:
81
GH_TOKEN: ${{ secrets.github_token }}
82
CSC_LINK: ${{ secrets.mac_certs }}
83
CSC_KEY_PASSWORD: ${{ secrets.mac_certs_password }}
84
+
85
+ - name: Build Electron app
86
+ if: matrix.os != 'macos-14'
87
+ run: |
88
+ cd electron
89
+ npm run build
90
+ env:
91
+ GH_TOKEN: ${{ secrets.github_token }}
0 commit comments