Skip to content

Commit 77ed787

Browse files
authored
Update dart.yml
1 parent 6f048ae commit 77ed787

1 file changed

Lines changed: 5 additions & 1 deletion

File tree

.github/workflows/dart.yml

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,13 @@ on:
1414
jobs:
1515
build:
1616
runs-on: ubuntu-latest
17-
1817
steps:
1918
- uses: actions/checkout@v4
19+
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
2024

2125
# 1. CHANGED: Use the Flutter-specific action
2226
- uses: subosito/flutter-action@v2

0 commit comments

Comments
 (0)