File tree Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Expand file tree Collapse file tree 1 file changed +17
-2
lines changed Original file line number Diff line number Diff line change 7
7
types : [published]
8
8
9
9
jobs :
10
- release-mac :
10
+ publish-tauri :
11
+ strategy :
12
+ fail-fast : false
13
+ matrix :
14
+ platform : [macos-latest, ubuntu-latest, windows-latest]
11
15
runs-on : " macos-latest"
12
16
steps :
13
17
- uses : actions/checkout@v4
22
26
- uses : pnpm/action-setup@v2
23
27
with :
24
28
version : 8
29
+ # - name: import windows certificate
30
+ # if: matrix.platform == 'windows-latest'
31
+ # env:
32
+ # WINDOWS_CERTIFICATE: ${{ secrets.WINDOWS_CERTIFICATE }}
33
+ # WINDOWS_CERTIFICATE_PASSWORD: ${{ secrets.WINDOWS_CERTIFICATE_PASSWORD }}
34
+ # run: |
35
+ # New-Item -ItemType directory -Path certificate
36
+ # Set-Content -Path certificate/tempCert.txt -Value $env:WINDOWS_CERTIFICATE
37
+ # certutil -decode certificate/tempCert.txt certificate/certificate.pfx
38
+ # Remove-Item -path certificate -include tempCert.txt
39
+ # Import-PfxCertificate -FilePath certificate/certificate.pfx -CertStoreLocation Cert:\CurrentUser\My -Password (ConvertTo-SecureString -String $env:WINDOWS_CERTIFICATE_PASSWORD -Force -AsPlainText)
25
40
- name : install frontend dependencies
26
41
run : pnpm install
27
42
- uses : tauri-apps/tauri-action@v0
38
53
releaseName : " Overlayed v__VERSION__"
39
54
releaseBody : " See the assets to download this version and install."
40
55
releaseDraft : true
41
- prerelease : true
56
+ prerelease : false
You can’t perform that action at this time.
0 commit comments