Skip to content

Commit

Permalink
Fixes code signing action. (#5)
Browse files Browse the repository at this point in the history
  • Loading branch information
FiniteSingularity authored Jun 29, 2024
1 parent eea5ee6 commit 3c5167d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions .github/workflows/build-project.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ jobs:
- name: Code Sign Installer
if: success()
run: |
& '.\smartcardtools\x86\ScSignTool.exe' -pin ${{ secrets.SIGNING_KEY_PIN }} sign /fd sha256 /tr http://ts.ssl.com /td sha256 /n '${{ secrets.SIGNING_ORG }}' .\Output\installer.exe
& '.\smartcardtools\x86\ScSignTool.exe' -pin ${{ secrets.SIGNING_KEY_PIN }} sign /fd sha256 /tr http://ts.ssl.com /td sha256 /n '${{ secrets.SIGNING_ORG }}' .\Output\${{ env.FILE_NAME }}-installer.exe
- name: Publish installer
if: success()
uses: actions/upload-artifact@v4
Expand All @@ -390,4 +390,7 @@ jobs:
- name: Remove temp artifacts
uses: geekyeggo/[email protected]
with:
name: "tmp-package\ntmp-installer"
name: "tmp-package\ntmp-installer"
- name: Cleanup
if: ${{ always() }}
run: rm -Recurse -Force ./*

0 comments on commit 3c5167d

Please sign in to comment.