Selaa lähdekoodia

Merge branch '0.4.x'

The following commits are merged using the default merge strategy.

70fade4ffa6066c99cfed2365985de12c18fb1eb Replace deprecated command with environment file
Steve Riesenberg 2 vuotta sitten
vanhempi
commit
f0530e7433
1 muutettua tiedostoa jossa 2 lisäystä ja 2 poistoa
  1. 2 2
      .github/workflows/continuous-integration-workflow.yml

+ 2 - 2
.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]