switch from set-output to $GITHUB_OUTPUT (#1)
Co-authored-by: DerpyChap <holla@derpychap.co.uk>
This commit is contained in:
parent
f759ed7f8f
commit
d4a95ed044
1 changed files with 2 additions and 2 deletions
|
|
@ -25,7 +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" ]
|
||||||
|
|
@ -34,6 +34,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
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue