We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0d9fbb3 commit 70fade4Copy full SHA for 70fade4
.github/workflows/continuous-integration-workflow.yml
@@ -24,10 +24,10 @@ jobs:
24
if: env.RUN_JOBS == 'true'
25
run: |
26
# Run jobs if in upstream repository
27
- echo "::set-output name=runjobs::true"
+ echo "runjobs=true" >> $GITHUB_OUTPUT
28
# Extract version from gradle.properties
29
version=$(cat gradle.properties | grep "version=" | awk -F'=' '{print $2}')
30
- echo "::set-output name=project_version::$version"
+ echo "project_version=$version" >> $GITHUB_OUTPUT
31
build:
32
name: Build
33
needs: [prerequisites]
0 commit comments