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 49c25e3 commit 1a6ecb8Copy full SHA for 1a6ecb8
.github/workflows/release.yml
@@ -108,6 +108,13 @@ jobs:
108
RELEASE_NOTE: ${{ needs.draft.outputs.release-note }}
109
run: echo "$RELEASE_NOTE" >> ./buildResources/release-notes.md
110
111
+ - name: Prepare for app notarization
112
+ if: startsWith(matrix.os, 'macos')
113
+ # Import Apple API key for app notarization on macOS
114
+ run: |
115
+ mkdir -p ~/private_keys/
116
+ echo '${{ secrets.api_key }}' > ~/private_keys/AuthKey_${{ secrets.api_key_id }}.p8
117
+
118
# Compile app and upload artifacts
119
- name: Compile & release Electron app
120
uses: samuelmeuli/action-electron-builder@v1
0 commit comments