From cba6942ccad350199bea068fb9018ea5d95fe39e Mon Sep 17 00:00:00 2001 From: netkas Date: Tue, 24 Sep 2024 12:32:27 -0400 Subject: [PATCH] Updated github_ci.yml.tpl --- src/ncc/Classes/PhpExtension/Templates/github_ci.yml.tpl | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/ncc/Classes/PhpExtension/Templates/github_ci.yml.tpl b/src/ncc/Classes/PhpExtension/Templates/github_ci.yml.tpl index 5a7e914..ccc544f 100644 --- a/src/ncc/Classes/PhpExtension/Templates/github_ci.yml.tpl +++ b/src/ncc/Classes/PhpExtension/Templates/github_ci.yml.tpl @@ -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]