Updated to move away from set-output

This commit is contained in:
VK 2024-04-30 12:23:26 +01:00
parent 9594e2987a
commit 8bcd8a2211

View file

@ -25,8 +25,7 @@ cd "$GITHUB_WORKSPACE/$5"
godot --headless --${mode} "$2" $GITHUB_WORKSPACE/build/${SubDirectoryLocation:-""}$1 godot --headless --${mode} "$2" $GITHUB_WORKSPACE/build/${SubDirectoryLocation:-""}$1
echo "Build Done" echo "Build Done"
echo ::set-output name=build::build/${SubDirectoryLocation:-""} echo build=build/${SubDirectoryLocation:-""} >> $GITHUB_OUTPUT
if [ "$4" = "true" ] if [ "$4" = "true" ]
then then
@ -34,6 +33,6 @@ then
mkdir -p $GITHUB_WORKSPACE/package mkdir -p $GITHUB_WORKSPACE/package
cd $GITHUB_WORKSPACE/build cd $GITHUB_WORKSPACE/build
zip $GITHUB_WORKSPACE/package/artifact.zip ${SubDirectoryLocation:-"."} -r 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" echo "Done"
fi fi