From d27c5e40d31445a46102aeb13c9fe36fa2bc4106 Mon Sep 17 00:00:00 2001 From: Ivan Dlugos Date: Mon, 10 Oct 2022 17:40:36 +0200 Subject: [PATCH] ci: update action names --- .github/workflows/metrics.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/metrics.yml b/.github/workflows/metrics.yml index 19f5ca1a9b..34faa37404 100644 --- a/.github/workflows/metrics.yml +++ b/.github/workflows/metrics.yml @@ -1,3 +1,5 @@ +name: SDK metrics + on: push: branches: [main] @@ -31,13 +33,13 @@ jobs: # Let's stick to an explicit version and update manually because a version change may affect results. # If it updated implicitly, it could confuse people to think the change is actually caused by the PR. # Instead, we use updater (update-deps.yml) to create PRs for explicit Flutter SDK update. - - name: Read Flutter version from file + - name: Read configured Flutter SDK version id: conf run: | version=$(grep "version" metrics/flutter.properties | cut -d'=' -f2 | xargs) echo "::set-output name=flutter::$version" - - name: Install Flutter ${{ steps.conf.outputs.flutter }} + - name: Install Flutter v${{ steps.conf.outputs.flutter }} uses: subosito/flutter-action@1e6ee87cb840500837bcd50a667fb28815d8e310 # pin@v2 with: flutter-version: ${{ steps.conf.outputs.flutter }}