mirror of
https://github.com/mikefarah/yq.git
synced 2024-11-12 13:48:06 +00:00
8a45e02cbb
1. Escaping behavior changed as a result of set-output deprecation. - Otherwise you'll encounter breaking changes for example "appVersion: "1.0.0"%0Aapplica..." where %0A is escaped newline \n but shouldn't be escaped. 2. Delimeter is required for multiline strings. - See here: https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#multiline-strings - Delimeter must be random. UUID is a solid choice. I verified that /proc/sys/kernel/random/uuid does indeed exist on the yq image.
13 lines
492 B
Bash
Executable File
13 lines
492 B
Bash
Executable File
#!/bin/sh -l
|
|
set -e
|
|
echo "::debug::\$cmd: $1"
|
|
RESULT=$(eval "$1")
|
|
echo "::debug::\$RESULT: $RESULT"
|
|
# updating from
|
|
# https://github.com/orgs/community/discussions/26288#discussioncomment-3876281
|
|
# https://docs.github.com/en/actions/using-workflows/workflow-commands-for-github-actions#setting-an-output-parameter
|
|
delimiter=$(cat /proc/sys/kernel/random/uuid)
|
|
echo "result<<${delimiter}" >> "${GITHUB_OUTPUT}"
|
|
echo "${RESULT}" >> "${GITHUB_OUTPUT}"
|
|
echo "${delimiter}" >> "${GITHUB_OUTPUT}"
|