Skip to content

Commit 70fade4

Browse files
jongwoooSteve Riesenberg
authored and
Steve Riesenberg
committed
Replace deprecated command with environment file
Closes gh-1062 Signed-off-by: jongwooo <[email protected]>
1 parent 0d9fbb3 commit 70fade4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/continuous-integration-workflow.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ jobs:
2424
if: env.RUN_JOBS == 'true'
2525
run: |
2626
# Run jobs if in upstream repository
27-
echo "::set-output name=runjobs::true"
27+
echo "runjobs=true" >> $GITHUB_OUTPUT
2828
# Extract version from gradle.properties
2929
version=$(cat gradle.properties | grep "version=" | awk -F'=' '{print $2}')
30-
echo "::set-output name=project_version::$version"
30+
echo "project_version=$version" >> $GITHUB_OUTPUT
3131
build:
3232
name: Build
3333
needs: [prerequisites]

0 commit comments

Comments
 (0)