We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6f048ae commit 77ed787Copy full SHA for 77ed787
1 file changed
.github/workflows/dart.yml
@@ -14,9 +14,13 @@ on:
14
jobs:
15
build:
16
runs-on: ubuntu-latest
17
-
18
steps:
19
- uses: actions/checkout@v4
+ with:
20
+ # Force checkout to pull the absolute latest commit on the branch
21
+ ref: ${{ github.ref }}
22
+ # Ensure full history is pulled (good practice for CI, though may not be necessary here)
23
+ fetch-depth: 0
24
25
# 1. CHANGED: Use the Flutter-specific action
26
- uses: subosito/flutter-action@v2
0 commit comments