File tree Expand file tree Collapse file tree 1 file changed +0
-30
lines changed Expand file tree Collapse file tree 1 file changed +0
-30
lines changed Original file line number Diff line number Diff line change 59
59
with :
60
60
submodules : recursive
61
61
62
- - name : Check flutter found
63
- id : check_flutter
64
- shell : bash
65
- run : |
66
- if flutter --version; then
67
- echo "installed=true" >> "$GITHUB_OUTPUT"
68
- else
69
- echo "installed=false" >> "$GITHUB_OUTPUT"
70
- fi
71
-
72
- - name : Setup flutter
73
- if : steps.check_flutter.outputs.installed == 'false'
74
- uses : subosito/flutter-action@v2
75
- with :
76
- channel : " stable"
77
- flutter-version : ' 3.7.12'
78
- cache : true
79
-
80
- # Step to clear CocoaPods cache and reinstall pods
81
- - name : Reinstall CocoaPods
82
- run : |
83
- flutter pub get
84
- cd ios
85
- echo "Current Directory:"
86
- pwd
87
- echo "Contents of Current Directory:"
88
- ls -la
89
- pod install --repo-update
90
-
91
-
92
62
- uses : sheenhx/action-flutter-build-ios@v1
93
63
with :
94
64
# always use --export-options-plist=ios/GithubActionsExportOptions.plist
You can’t perform that action at this time.
0 commit comments