File tree 1 file changed +10
-1
lines changed 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change 20
20
# Github Actions don't support templates so it is hard to share this snippet with another action
21
21
# If we eventually need to use this in more workflow, we could create a shell script that contains this
22
22
# snippet.
23
+ #
24
+ # This uses a pinned version of Flutter rather than `stable` so that it is
25
+ # not subject to out-of-band failures when new releases happen. It does
26
+ # not use the auto-rolled pin because there's no way for the autoroller
27
+ # to test the actual release flow, so changes would still show up in
28
+ # post-submit. A manually-rolled pin means that any changes here must be
29
+ # made deliberately, so that the person updating it knows to watch the
30
+ # next actual auto-release to ensure that it works, and knows to revert
31
+ # the change if it doesn't.
23
32
run : |
24
33
cd $HOME
25
- git clone https://github.com/flutter/flutter.git --depth 1 -b stable _flutter
34
+ git clone https://github.com/flutter/flutter.git --depth 1 -b 3.10.0 _flutter
26
35
echo "$HOME/_flutter/bin" >> $GITHUB_PATH
27
36
cd $GITHUB_WORKSPACE
28
37
# Checks out a copy of the repo.
You can’t perform that action at this time.
0 commit comments