We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b15ea7b commit 160daa1Copy full SHA for 160daa1
1 file changed
.github/workflows/pack-pip.yaml
@@ -79,8 +79,8 @@ jobs:
79
- name: Setup SM_CLIENT_CERT_FILE from base64 secret data
80
if: runner.os == 'Windows' && env.SIGN_WINDOWS_WHEELS == 'true'
81
run: |
82
- echo "SM_CLIENT_CERT_FILE=D:\\Certificate_pkcs12.p12" >> "$GITHUB_ENV"
83
- echo "${{ secrets.SM_CLIENT_CERT_FILE_B64 }}" | base64 --decode > /d/Certificate_pkcs12.p12
+ echo "SM_CLIENT_CERT_FILE=$RUNNER_TEMP\\Certificate_pkcs12.p12" >> "$GITHUB_ENV"
+ echo "${{ secrets.SM_CLIENT_CERT_FILE_B64 }}" | base64 --decode > "$RUNNER_TEMP/Certificate_pkcs12.p12"
84
- name: Sign unpacked wheel binaries
85
86
uses: digicert/code-signing-software-trust-action@v1.2.1
0 commit comments