We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 10cfef3 commit 8fa7b2aCopy full SHA for 8fa7b2a
1 file changed
.github/workflows/release-build.yml
@@ -51,6 +51,17 @@ jobs:
51
- name: Build package
52
run: ${{ matrix.script }}
53
54
+ - name: Mac signing
55
+ if: runner.os == 'macos-latest'
56
+ run: npm run build && npx electron-builder --mac --publish always
57
+ env:
58
+ GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
59
+ CSC_LINK: /tmp/certificate.p12
60
+ CSC_KEY_PASSWORD: ${{ secrets.CSC_KEY_PASSWORD }}
61
+ APPLE_ID: ${{ secrets.APPLE_ID }}
62
+ APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}
63
+ APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
64
+
65
- name: Upload artifacts
66
uses: actions/upload-artifact@v4
67
with:
0 commit comments