Signed-off-by: dom <githubaccount56556@proton.me>
This commit is contained in:
dom
2026-03-04 11:38:13 +08:00
parent 6738142ac0
commit 8d312d8cf1
4 changed files with 34 additions and 1 deletions

View File

@@ -26,6 +26,17 @@ jobs:
channel: stable
flutter-version-file: pubspec.yaml
- name: pick tooltip fix
working-directory: ${{ env.FLUTTER_ROOT }}
run: |
git config --global user.name "ci"
git config --global user.email "example@example.com"
git stash || true
git cherry-pick 56956c33ef102ac0b5fc46b62bd2dd9f50a86616 --no-edit
git reset --soft HEAD~1
git stash pop || true
continue-on-error: true
- name: apply modal barrier patch
working-directory: ${{ env.FLUTTER_ROOT }}
run: git apply $env:GITHUB_WORKSPACE\lib\scripts\modal_barrier_patch.diff || true