fix: builder and sdk changes #81

Merged
marcel.henselin merged 85 commits from chore/update_goreleaser into alpha 2026-03-11 13:13:46 +00:00
Showing only changes of commit 30e4ce6b2d - Show all commits

View file

@ -134,8 +134,6 @@ runs:
export PS4='+(${BASH_SOURCE}:${LINENO}): ${FUNCNAME[0]:+${FUNCNAME[0]}(): }'
jsonFileContent="${{ inputs.service_account_json_content }}"
jsonFile="${{ inputs.service_account_json_file_path }}"
jsonFile="${jsonFile:-x}"
if [ "${jsonFile}" == "x" ]; then
@ -145,11 +143,11 @@ runs:
if [ ! -f "${jsonFile}" ]; then
echo "unable to find service account file '${{ inputs.service_account_json_file_path }}'"
if [ "${jsonFileContent:-x}" == "x" ]; then
echo "ERROR: service_account_json_file_content MUST NOT be empty if account file is missing"
exit 1
fi
echo "creating service account file '${{ inputs.service_account_json_file_path }}'"
#if [ "${jsonFileContent:-x}" == "x" ]; then
# echo "ERROR: service_account_json_file_content MUST NOT be empty if account file is missing"
# exit 1
#fi
#echo "creating service account file '${{ inputs.service_account_json_file_path }}'"
echo "${{ inputs.service_account_json_content }}" > stackit/"${{ inputs.service_account_json_file_path }}"
fi
ls -l stackit/"${{ inputs.service_account_json_file_path }}"