From 48eb74160dd60513ea6467c29e28d2b6ce59540b Mon Sep 17 00:00:00 2001 From: "brian m. carlson" Date: Fri, 20 May 2022 14:51:59 +0000 Subject: [PATCH] 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. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 303c54b3..9c3a3b96 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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}}