File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 24
24
25
25
- name : Setup Certificate
26
26
run : |
27
- echo "${{ secrets.SM_CLIENT_CERT_FILE_B64 }}" | base64 --decode > C:\ certificate.p12
27
+ echo "${{ secrets.SM_CLIENT_CERT_FILE_B64 }}" | base64 --decode > certificate.p12
28
28
shell : bash
29
29
30
30
- name : Set variables
36
36
echo "CERTIFICATE_NAME=gt-certificate" >> $GITHUB_OUTPUT
37
37
echo "SM_HOST=${{ secrets.SM_HOST }}" >> "$GITHUB_ENV"
38
38
echo "SM_API_KEY=${{ secrets.SM_API_KEY }}" >> "$GITHUB_ENV"
39
- echo "SM_CLIENT_CERT_FILE=C:\ certificate.p12" >> "$GITHUB_ENV"
39
+ echo "SM_CLIENT_CERT_FILE=certificate.p12" >> "$GITHUB_ENV"
40
40
echo "SM_CLIENT_CERT_PASSWORD=${{ secrets.SM_CLIENT_CERT_PASSWORD }}" >> "$GITHUB_ENV"
41
41
echo "C:\Program Files (x86)\Windows Kits\10\App Certification Kit" >> $GITHUB_PATH
42
42
echo "C:\Program Files (x86)\Microsoft SDKs\Windows\v10.0A\bin\NETFX 4.8 Tools" >> $GITHUB_PATH
87
87
signtool.exe sign /sha1 ${{ secrets.SM_CODE_SIGNING_CERT_SHA1_HASH }} /tr http://timestamp.digicert.com /td SHA256 /fd SHA256 "./target/wix/*.msi"
88
88
89
89
- name : Delete cert file
90
- run : Remove-Item -Force C:\ certificate.p12
90
+ run : Remove-Item -Force certificate.p12
91
91
92
92
- name : Github Release
93
93
uses : softprops/action-gh-release@v2
You can’t perform that action at this time.
0 commit comments