From 70fade4ffa6066c99cfed2365985de12c18fb1eb Mon Sep 17 00:00:00 2001 From: jongwooo Date: Sun, 5 Feb 2023 20:58:39 +0900 Subject: [PATCH] Replace deprecated command with environment file Closes gh-1062 Signed-off-by: jongwooo --- .github/workflows/continuous-integration-workflow.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index fb4523de..30997100 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -24,10 +24,10 @@ jobs: if: env.RUN_JOBS == 'true' run: | # Run jobs if in upstream repository - echo "::set-output name=runjobs::true" + echo "runjobs=true" >> $GITHUB_OUTPUT # Extract version from gradle.properties version=$(cat gradle.properties | grep "version=" | awk -F'=' '{print $2}') - echo "::set-output name=project_version::$version" + echo "project_version=$version" >> $GITHUB_OUTPUT build: name: Build needs: [prerequisites]