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 430a3d7 commit 836542aCopy full SHA for 836542a
.github/workflows/publish_package.yaml
@@ -18,9 +18,17 @@ jobs:
18
- name: Setup Flutter
19
uses: subosito/flutter-action@v2
20
with:
21
- flutter-version: '3.24.4' # Includes Dart 3.6.0
22
- channel: 'stable'
23
- cache: true
+ flutter-version: '3.24.4' # Should include Dart 3.6.0
+ channel: 'stable'
+ cache: true
24
+ cache-key: flutter-3.24.4 # Force cache refresh for this version
25
+ cache-path: ~/.pub-cache
26
+
27
+ - name: Verify Flutter version
28
+ run: |
29
+ flutter --version
30
+ dart --version
31
32
33
- name: Install dependencies
34
run: flutter pub get
0 commit comments