Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -496,6 +496,11 @@ jobs:

- name: Read Flutter version
id: flutter-ver
# Windows runners default to PowerShell, where the bash-style
# $(...) command substitution and $GITHUB_OUTPUT do not work. Without
# this the version output is empty and subosito installs the latest
# stable Flutter instead of the pinned version. See flutter-version.txt.
shell: bash
run: echo "version=$(cat ${{ env.FLUTTER_VERSION_FILE }})" >> "$GITHUB_OUTPUT"

- uses: subosito/flutter-action@v2
Expand Down
5 changes: 5 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -319,6 +319,11 @@ jobs:

- name: Read Flutter version
id: flutter-ver
# Windows runners default to PowerShell, where the bash-style
# $(...) command substitution and $GITHUB_OUTPUT do not work. Without
# this the version output is empty and subosito installs the latest
# stable Flutter instead of the pinned version. See flutter-version.txt.
shell: bash
run: echo "version=$(cat ${{ env.FLUTTER_VERSION_FILE }})" >> "$GITHUB_OUTPUT"

- name: Setup Flutter
Expand Down
Loading