File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -23,15 +23,18 @@ jobs:
23
23
# pubspec is satisfied. It's uncommon for flutter/flutter to go
24
24
# more than 100 commits between tags. Fetch 1000 for good measure.
25
25
run : |
26
- git clone --depth=1000 -b main https://github.com/flutter/flutter ~/flutter
26
+ # TODO temp hack 2025-07-08 as Flutter's `main` is broken but `master` works:
27
+ # https://github.com/zulip/zulip-flutter/pull/1688#issuecomment-3050661097
28
+ # https://discord.com/channels/608014603317936148/608021351567065092/1392301750383415376
29
+ git clone --depth=1000 -b master https://github.com/flutter/flutter ~/flutter
27
30
TZ=UTC git --git-dir ~/flutter/.git log -1 --format='%h | %ci | %s' --date=iso8601-local
28
31
echo ~/flutter/bin >> "$GITHUB_PATH"
29
32
30
33
# The Flutter tool assumes the tip of tree is "origin/master"
31
34
# (or "upstream/master"):
32
35
# https://github.com/flutter/flutter/issues/160626
33
36
# TODO(upstream): make workaround unneeded
34
- git --git-dir ~/flutter/.git update-ref refs/remotes/origin/master origin/main
37
+ # TODO, see temp hack above: git --git-dir ~/flutter/.git update-ref refs/remotes/origin/master origin/main
35
38
36
39
- name : Download Flutter SDK artifacts (flutter precache)
37
40
run : flutter precache --universal
You can’t perform that action at this time.
0 commit comments