fix: builder and sdk changes #81
1 changed files with 5 additions and 7 deletions
12
.github/actions/acc_test/action.yaml
vendored
12
.github/actions/acc_test/action.yaml
vendored
|
|
@ -134,8 +134,6 @@ runs:
|
||||||
|
|
||||||
export PS4='+(${BASH_SOURCE}:${LINENO}): ${FUNCNAME[0]:+${FUNCNAME[0]}(): }'
|
export PS4='+(${BASH_SOURCE}:${LINENO}): ${FUNCNAME[0]:+${FUNCNAME[0]}(): }'
|
||||||
|
|
||||||
|
|
||||||
jsonFileContent="${{ inputs.service_account_json_content }}"
|
|
||||||
jsonFile="${{ inputs.service_account_json_file_path }}"
|
jsonFile="${{ inputs.service_account_json_file_path }}"
|
||||||
jsonFile="${jsonFile:-x}"
|
jsonFile="${jsonFile:-x}"
|
||||||
if [ "${jsonFile}" == "x" ]; then
|
if [ "${jsonFile}" == "x" ]; then
|
||||||
|
|
@ -145,11 +143,11 @@ runs:
|
||||||
|
|
||||||
if [ ! -f "${jsonFile}" ]; then
|
if [ ! -f "${jsonFile}" ]; then
|
||||||
echo "unable to find service account file '${{ inputs.service_account_json_file_path }}'"
|
echo "unable to find service account file '${{ inputs.service_account_json_file_path }}'"
|
||||||
if [ "${jsonFileContent:-x}" == "x" ]; then
|
#if [ "${jsonFileContent:-x}" == "x" ]; then
|
||||||
echo "ERROR: service_account_json_file_content MUST NOT be empty if account file is missing"
|
# echo "ERROR: service_account_json_file_content MUST NOT be empty if account file is missing"
|
||||||
exit 1
|
# exit 1
|
||||||
fi
|
#fi
|
||||||
echo "creating service account file '${{ inputs.service_account_json_file_path }}'"
|
#echo "creating service account file '${{ inputs.service_account_json_file_path }}'"
|
||||||
echo "${{ inputs.service_account_json_content }}" > stackit/"${{ inputs.service_account_json_file_path }}"
|
echo "${{ inputs.service_account_json_content }}" > stackit/"${{ inputs.service_account_json_file_path }}"
|
||||||
fi
|
fi
|
||||||
ls -l stackit/"${{ inputs.service_account_json_file_path }}"
|
ls -l stackit/"${{ inputs.service_account_json_file_path }}"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue