diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-05-02 12:11:41 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-05-02 12:11:41 +0200 |
commit | 64ba5e4ed1456bed159cfe7b41ed9175b8baf5c4 (patch) | |
tree | 9e0de7effc3ca0b49ce2c5ffb2c1462c626929c3 /.github/workflows | |
parent | ae75585b52078ca6d89b4014668c08d9aea4a17b (diff) | |
parent | d80dee2a54a172fa19c0bc21486ee43ef2e3514d (diff) | |
download | PrismLauncher-64ba5e4ed1456bed159cfe7b41ed9175b8baf5c4.tar.gz PrismLauncher-64ba5e4ed1456bed159cfe7b41ed9175b8baf5c4.tar.bz2 PrismLauncher-64ba5e4ed1456bed159cfe7b41ed9175b8baf5c4.zip |
Merge pull request #833 from Ryex/advanced_copy_instance
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 663bfc5f..02cc8b1f 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -400,7 +400,7 @@ jobs: if (Get-Content ./codesign.pfx){ cd ${{ env.INSTALL_DIR }} # We ship the exact same executable for portable and non-portable editions, so signing just once is fine - SignTool sign /fd sha256 /td sha256 /f ../codesign.pfx /p '${{ secrets.WINDOWS_CODESIGN_PASSWORD }}' /tr http://timestamp.digicert.com prismlauncher.exe + SignTool sign /fd sha256 /td sha256 /f ../codesign.pfx /p '${{ secrets.WINDOWS_CODESIGN_PASSWORD }}' /tr http://timestamp.digicert.com prismlauncher.exe prismlauncher_filelink.exe } else { ":warning: Skipped code signing for Windows, as certificate was not present." >> $env:GITHUB_STEP_SUMMARY } |