Skip to content

Commit

Permalink
Try alternate signer
Browse files Browse the repository at this point in the history
Same as auth app, except this only signs the installers not the binary itself.
  • Loading branch information
mnvr committed May 27, 2024
1 parent af3bbff commit b7e14a6
Showing 1 changed file with 12 additions and 4 deletions.
16 changes: 12 additions & 4 deletions .github/workflows/test-win-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -95,8 +95,7 @@ jobs:
env:
# macOS notarization credentials key details
APPLE_ID: ${{ secrets.APPLE_ID }}
APPLE_APP_SPECIFIC_PASSWORD:
${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}
APPLE_APP_SPECIFIC_PASSWORD: ${{ secrets.APPLE_APP_SPECIFIC_PASSWORD }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
USE_HARD_LINKS: false

Expand All @@ -111,6 +110,15 @@ jobs:
env:
# Windows signing credentials
# https://www.electron.build/code-signing
CSC_LINK: "windows-csc.pfx"
CSC_KEY_PASSWORD: ${{ secrets.WINDOWS_CSC_KEY_PASSWORD }}
# CSC_LINK: "windows-csc.pfx"
# CSC_KEY_PASSWORD: ${{ secrets.WINDOWS_CSC_KEY_PASSWORD }}
USE_HARD_LINKS: false

- name: Code sign generated Windows installers
if: startsWith(matrix.os, 'windows')
steps:
uses: dlemstra/code-sign-action@v1
with:
certificate: "${{ secrets.WINDOWS_CERTIFICATE }}"
password: "${{ secrets.WINDOWS_CERTIFICATE_PASSWORD }}"
folder: "dist"

0 comments on commit b7e14a6

Please sign in to comment.