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 id: check
run: | run: |
if [ -f phpunit.xml ]; then if [ -f phpunit.xml ]; then
echo "::set-output name=phpunit-exists::true" echo "phpunit-exists=true" >> $GITHUB_ENV
else else
echo "::set-output name=phpunit-exists::false" echo "phpunit-exists=false" >> $GITHUB_ENV
fi
test: test:
needs: [build, check-phpunit] needs: [build, check-phpunit]