fix the file path

This commit is contained in:
ICHINOSE Shogo
2022-10-13 23:16:47 +09:00
parent f9cca350ae
commit 37e829d169

View File

@@ -41,7 +41,7 @@ set_output() {
name=$1
value=$2
if [ -n "${GITHUB_OUTPUT}" ]; then
echo "$name=$value" >> "{$GITHUB_OUTPUT}"
echo "$name=$value" >> "${GITHUB_OUTPUT}"
else
echo "::set-output name=$name::$value"
fi