diff --git a/entrypoint.sh b/entrypoint.sh index 52bd850..11f4d46 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -20,11 +20,10 @@ echo -e "\033[36mExecuting helm\033[0m" helm_output=$(./run.sh) echo "$helm_output" -helm_output="${helm_output//'%'/'%25'}" -helm_output="${helm_output//$'\n'/'%0A'}" -helm_output="${helm_output//$'\r'/'%0D'}" - -echo "helm_output=$helm_output" >> $GITHUB_OUTPUT +delimiter="$(openssl rand -hex 8)" +echo "helm_output<<${delimiter}" >> "${GITHUB_OUTPUT}" +echo "$helm_output" >> "${GITHUB_OUTPUT}" +echo "${delimiter}" >> "${GITHUB_OUTPUT}" echo -e "\033[36mCleaning up: \033[0m" rm ./run.sh -Rf