Committed by
GitHub
Address env deprecation (#58)
* PR * Use new env * Adjust
Showing
1 changed file
with
1 additions
and
1 deletions
| @@ -54,7 +54,7 @@ jobs: | @@ -54,7 +54,7 @@ jobs: | ||
| 54 | if: steps.pubspec.outputs.changed == 0 | 54 | if: steps.pubspec.outputs.changed == 0 |
| 55 | run: | | 55 | run: | |
| 56 | cd ${{ matrix.package }} | 56 | cd ${{ matrix.package }} |
| 57 | - echo ::set-env name=VERSION::"$(awk '{if ($1 ~ /^version:/) print $2}' pubspec.yaml)" | 57 | + echo "VERSION=$(awk '{if ($1 ~ /^version:/) print $2}' pubspec.yaml)" >> $GITHUB_ENV |
| 58 | - uses: sakebook/actions-flutter-pub-publisher@v1.3.1 | 58 | - uses: sakebook/actions-flutter-pub-publisher@v1.3.1 |
| 59 | if: steps.pubspec.outputs.changed == 0 | 59 | if: steps.pubspec.outputs.changed == 0 |
| 60 | with: | 60 | with: |
-
Please register or login to post a comment