From c56ce09a6ac64095e0078305628881ee8e1799cc Mon Sep 17 00:00:00 2001 From: Scion Date: Thu, 13 Apr 2023 03:13:28 -0700 Subject: [PATCH] test update output. --- unity-get-buildtarget/get_target.sh | 4 ++-- unity-get-container/get_container.sh | 2 +- unity-get-version/action.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/unity-get-buildtarget/get_target.sh b/unity-get-buildtarget/get_target.sh index 82f2978..1c75955 100644 --- a/unity-get-buildtarget/get_target.sh +++ b/unity-get-buildtarget/get_target.sh @@ -34,5 +34,5 @@ case $TARGET in ;; esac -echo "::set-output name=buildTarget::$UNITY_TARGET" -echo "::set-output name=buildArg::$BUILD_ARG" \ No newline at end of file +echo "buildTarget=$UNITY_TARGET" >> "$GITHUB_OUTPUT" +echo "buildArg=$BUILD_ARG" >> "$GITHUB_OUTPUT" diff --git a/unity-get-container/get_container.sh b/unity-get-container/get_container.sh index dc83198..fa20f59 100644 --- a/unity-get-container/get_container.sh +++ b/unity-get-container/get_container.sh @@ -34,4 +34,4 @@ case $TARGET in esac CONTAINER=unityci/editor:$UNITY_VERSION-$UNITY_TARGET -echo "::set-output name=container::$CONTAINER" \ No newline at end of file +echo "container=$CONTAINER" >> "$GITHUB_OUTPUT" \ No newline at end of file diff --git a/unity-get-version/action.yaml b/unity-get-version/action.yaml index dccc1a3..fc0a675 100644 --- a/unity-get-version/action.yaml +++ b/unity-get-version/action.yaml @@ -21,5 +21,5 @@ runs: VERSION=$(grep -w $VERSION_KEY $VERSION_FILE_PATH | cut -d ':' -f2 | xargs) - echo "::set-output name=projectVersion::$VERSION" + echo "projectVersion=$VERSION" >> "$GITHUB_OUTPUT" shell: bash