We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1fa80b7 commit b208e3bCopy full SHA for b208e3b
.github/workflows/ci.yml
@@ -10,6 +10,12 @@ jobs:
10
uses: actions/checkout@v3
11
with:
12
submodules: true
13
+ # This is only needed for the flutter submodule.
14
+ # We can't do a depth-1 clone, because we need the most recent tag
15
+ # so that Flutter knows its version and sees the constraint in our
16
+ # pubspec is satisfied. It's uncommon for flutter/flutter to go
17
+ # more than 100 commits between tags. Fetch 1000 for good measure.
18
+ fetch-depth: 1000
19
20
- name: Add vendored flutter to PATH
21
run: |
0 commit comments