From 8bcd8a221118f32a17803c56e715f67b34dd831e Mon Sep 17 00:00:00 2001 From: VK Date: Tue, 30 Apr 2024 12:23:26 +0100 Subject: [PATCH] Updated to move away from set-output --- entrypoint.sh | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/entrypoint.sh b/entrypoint.sh index 5617260..e33c5c4 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -25,8 +25,7 @@ cd "$GITHUB_WORKSPACE/$5" godot --headless --${mode} "$2" $GITHUB_WORKSPACE/build/${SubDirectoryLocation:-""}$1 echo "Build Done" -echo ::set-output name=build::build/${SubDirectoryLocation:-""} - +echo build=build/${SubDirectoryLocation:-""} >> $GITHUB_OUTPUT if [ "$4" = "true" ] then @@ -34,6 +33,6 @@ then mkdir -p $GITHUB_WORKSPACE/package cd $GITHUB_WORKSPACE/build zip $GITHUB_WORKSPACE/package/artifact.zip ${SubDirectoryLocation:-"."} -r - echo ::set-output name=artifact::package/artifact.zip + echo artifact=package/artifact.zip >> $GITHUB_OUTPUT echo "Done" fi