We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 75b6c6a commit 66ba681Copy full SHA for 66ba681
.github/workflows/electron-build.yml
@@ -27,14 +27,17 @@ jobs:
27
if: ${{ matrix.os == 'windows-latest'}}
28
run: |
29
yarn build:win
30
+ - name: Import Apple installer signing certificate
31
+ if: matrix.os.matrix == 'macos'
32
+ uses: Apple-Actions/import-codesign-certs@v2
33
+ with:
34
+ p12-file-base64: ${{ secrets.APPLE_DEV_ID_APP }}
35
+ p12-password: ${{ secrets.APPLE_DEV_ID_APP_PASS }}
36
- name: Build macOS
37
if: ${{ matrix.os == 'macos-latest'}}
38
39
xattr -cr .
40
yarn build:mac
- env:
- APPLE_ID: ${{ secrets.APPLE_ID }}
- APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}
41
- name: Build Linux
42
if: ${{ matrix.os == 'ubuntu-latest'}}
43
0 commit comments