mirror of
https://github.com/balena-io/balena-cli.git
synced 2025-03-13 15:56:28 +00:00
Fix package release action for macOS
Depending on the signing password value, the script may interpret the contents of the password and cause the signing process to fail. This puts quotes around the password on assignment to prevent this.
This commit is contained in:
parent
42c50ef8ae
commit
d24d78dac7
2
.github/actions/publish/action.yml
vendored
2
.github/actions/publish/action.yml
vendored
@ -94,7 +94,7 @@ runs:
|
||||
runner_arch="$(echo "${RUNNER_ARCH}" | tr '[:upper:]' '[:lower:]')"
|
||||
|
||||
if [[ $runner_os =~ darwin|macos|osx ]]; then
|
||||
CSC_KEY_PASSWORD=${{ fromJSON(inputs.secrets).APPLE_SIGNING_PASSWORD }}
|
||||
CSC_KEY_PASSWORD='${{ fromJSON(inputs.secrets).APPLE_SIGNING_PASSWORD }}'
|
||||
CSC_KEYCHAIN=signing_temp
|
||||
CSC_LINK=${{ fromJSON(inputs.secrets).APPLE_SIGNING }}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user