We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 007c322 commit 969818dCopy full SHA for 969818d
.github/action/entrypoint.sh
@@ -1,9 +1,9 @@
1
#!/bin/sh
2
output=$(/cli/bin/run $*); status=$?;
3
4
-delimiter="$(uuidgen)"
5
-echo "response<<${delimiter}" >> "${GITHUB_OUTPUT}"
6
-echo "${output}" >> "${GITHUB_OUTPUT}"
7
-echo "${delimiter}" >> "${GITHUB_OUTPUT}"
+EOF=$(dd if=/dev/urandom bs=15 count=1 status=none | base64)
+echo "response<<$EOF" >> $GITHUB_OUTPUT
+echo $output >> $GITHUB_OUTPUT
+echo "$EOF" >> $GITHUB_OUTPUT
8
9
exit $status
0 commit comments