Skip to content

Commit a6ce940

Browse files
[ci] Update Flutter version for release (#10425)
When updating the repo for the 3.38 release, I missed the step of updating the release script (it's in the documented steps already, I just missed that line this time). This is causing a `release` failure for packages that require 3.38. Uses 3.38.1 rather than 3.38.0 because of the Dart version mistake in 3.38.0.
1 parent 6640af6 commit a6ce940

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# the change if it doesn't.
3232
run: |
3333
cd $HOME
34-
git clone https://github.com/flutter/flutter.git --depth 1 -b 3.35.0 _flutter
34+
git clone https://github.com/flutter/flutter.git --depth 1 -b 3.38.1 _flutter
3535
echo "$HOME/_flutter/bin" >> $GITHUB_PATH
3636
cd $GITHUB_WORKSPACE
3737
# Checks out a copy of the repo.

script/tool/lib/src/common/file_filters.dart

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ bool isRepoLevelNonCodeImpactingFile(String path) {
2222
'.github/dependabot.yml',
2323
'.github/labeler.yml',
2424
'.github/post_merge_labeler.yml',
25+
'.github/workflows/release.yml',
2526
'.github/workflows/pull_request_label.yml',
2627
].contains(path) ||
2728
// This directory only affects automated code reviews, so cannot affect

0 commit comments

Comments
 (0)