Makefile: use correct PATH for signtool

GitHub Actions no longer has signtool in the location it did previously.
Let's specify an appropriate PATH value so that we can sign binaries.
This commit is contained in:
brian m. carlson 2022-05-20 14:51:59 +00:00
parent db5c96755b
commit 48eb74160d
No known key found for this signature in database
GPG Key ID: 2D0C9BC12F82B3A1

@ -45,7 +45,7 @@ jobs:
shell: bash
env:
FORCE_LOCALIZE: true
- run: PATH="$HOME/go/bin:/c/Program Files (x86)/Windows Kits/10/bin/x86:$PATH" CERT_FILE="$HOME/cert.pfx" make release-windows
- run: PATH="$HOME/go/bin:/c/Program Files (x86)/Windows Kits/10/bin/10.0.17763.0/x86:$PATH" CERT_FILE="$HOME/cert.pfx" make release-windows
shell: bash
env:
CERT_PASS: ${{secrets.WINDOWS_CERT_PASS}}