Skip to content

Commit

Permalink
remove windows signing code
Browse files Browse the repository at this point in the history
  • Loading branch information
a5huynh committed Nov 13, 2024
1 parent 975b7cb commit 99b07ef
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 20 deletions.
11 changes: 0 additions & 11 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -119,17 +119,6 @@ jobs:
target/x86_64-apple-darwin/release/spyglass-debug \
target/aarch64-apple-darwin/release/spyglass-debug;
- name: import windows certificate
if: matrix.platform == 'windows-latest'
env:
WINDOWS_CERTIFICATE: ${{ secrets.WINDOWS_CERTIFICATE }}
WINDOWS_CERTIFICATE_PASSWORD: ${{ secrets.WINDOWS_CERTIFICATE_PASSWORD }}
run: |
New-Item -ItemType directory -Path certificate
Set-Content -Path certificate/tempCert.txt -Value $env:WINDOWS_CERTIFICATE
certutil -decode certificate/tempCert.txt certificate/certificate.pfx
Remove-Item -path certificate -include tempCert.txt
Import-PfxCertificate -FilePath certificate/certificate.pfx -CertStoreLocation Cert:\CurrentUser\My -Password (ConvertTo-SecureString -String $env:WINDOWS_CERTIFICATE_PASSWORD -Force -AsPlainText)
- name: Import Apple Developer certificate
if: matrix.platform == 'macos-latest'
env:
Expand Down
10 changes: 1 addition & 9 deletions apps/tauri/tauri.rel.conf.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,6 @@
"binaries/spyglass-server",
"binaries/spyglass-debug",
"binaries/pdftotext"
],
"windows": {
"certificateThumbprint": "40156DEE669BFE79B4DE33A77917991B80E2C4D8",
"digestAlgorithm": "sha256",
"timestampUrl": "http://timestamp.comodoca.com",
"webviewInstallMode": {
"type": "embedBootstrapper"
}
}
]
}
}

0 comments on commit 99b07ef

Please sign in to comment.