Skip to content

Commit a7bbc0f

Browse files
committed
Add Sign Procedure
1 parent d5ebc38 commit a7bbc0f

File tree

1 file changed

+13
-0
lines changed

1 file changed

+13
-0
lines changed

.github/workflows/check-test-build.yml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,19 @@ jobs:
8888
.\scripts\build\windows\set_version_from_template.ps1
8989
pyinstaller --version-file "./version_windows.txt" --add-data "version.txt;." --icon "./steamCloudSaveDownloaderGUI/res/scsd_256.ico" --hide-console hide-late --collect-all steamCloudSaveDownloaderGUI --collect-all dateutil --collect-all steamCloudSaveDownloader --onefile ./scsd-gui --name $filename
9090
91+
- name: Sign (Windows)
92+
if: ${{ matrix.os == 'windows-latest' }}
93+
uses: skymatic/code-sign-action@v1
94+
with:
95+
certificate: '${{ secrets.SIGNTOOL_CERT }}'
96+
password: '${{ secrets.SIGNTOOL_PASS }}'
97+
certificatesha1: '${{ secrets.SIGNTOOL_FINGERPRINT }}'
98+
certificatename: '${{ secrets.SIGNTOOL_NAME }}'
99+
description: 'scsd-gui'
100+
timestampUrl: 'http://timestamp.digicert.com'
101+
folder: 'dist'
102+
recursive: true
103+
91104
- name: Build
92105
if: ${{ matrix.os == 'ubuntu-latest' }}
93106
run: |

0 commit comments

Comments
 (0)