1
0
mirror of synced 2026-03-10 12:58:10 +00:00

buildLoadup Remove spaces from input Maiko release tag

This commit is contained in:
Frank Halasz
2026-03-01 23:03:00 -08:00
parent d90358f410
commit e66b434f98

View File

@@ -145,7 +145,7 @@ jobs:
then
tag=$(gh release list --repo ${{ github.repository_owner }}/maiko | grep Latest | head -n 1 | awk '{ print $3 }')
else
tag=${{ inputs.maiko_release }}
tag=$(echo "${{ inputs.maiko_release }}" | sed 's/[[:space:]]//g')
set +e
gh release view ${tag} --repo ${{ github.repository_owner }}/maiko
if [ $? -ne 0 ]; then echo "!!!!!!! Error: Cannot find Maiko release ${tag}. Exiting."; exit 1; fi