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 ed0d056 commit 86a0a4eCopy full SHA for 86a0a4e
.github/scripts/ppc64le/self-hosted-builder/helpers/app_token.sh
@@ -22,7 +22,7 @@ header_base64=$(echo -n "$header" | openssl base64 | tr -d '=' | tr '/+' '_-' |
22
payload_base64=$(echo -n "$payload" | openssl base64 | tr -d '=' | tr '/+' '_-' | tr -d '\n')
23
24
signature=$(echo -n "${header_base64}.${payload_base64}" | \
25
- openssl dgst -sha256 -sign "$APP_PRIVATE_KEY" | \
+ openssl dgst -sha256 -sign "${APP_PRIVATE_KEY}" | \
26
openssl base64 | tr -d '=' | tr '/+' '_-' | tr -d '\n')
27
28
generated_jwt="${header_base64}.${payload_base64}.${signature}"
0 commit comments