Update NCC workflow to use new GitHub environment syntax

This commit is contained in:
netkas 2024-09-24 12:33:51 -04:00
parent 23790bd189
commit b9e942635a

View file

@ -71,10 +71,9 @@ jobs:
id: check
run: |
if [ -f phpunit.xml ]; then
echo "::set-output name=phpunit-exists::true"
echo "phpunit-exists=true" >> $GITHUB_ENV
else
echo "::set-output name=phpunit-exists::false"
fi
echo "phpunit-exists=false" >> $GITHUB_ENV
test:
needs: [build, check-phpunit]