Skip to content

Commit e7eab16

Browse files
committed
refactor/EWM-497: clean cache for use new anti_phishing file
1 parent 994e50c commit e7eab16

File tree

1 file changed

+16
-5
lines changed

1 file changed

+16
-5
lines changed

.github/workflows/app-deploy.yaml

Lines changed: 16 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -292,16 +292,27 @@ jobs:
292292
name: anti-phishing-json
293293
path: assets/config
294294

295+
- name: Flutter clean
296+
run: flutter clean
297+
298+
- name: Remove Dart tool & pub cache
299+
run: |
300+
rm -rf .dart_tool/
301+
rm -rf $HOME/.pub-cache/
302+
303+
- name: Get Flutter packages
304+
run: dart pub get
305+
295306
- name: Refresh Flutter assets manifest
296307
run: |
297308
touch assets/config/anti_phishing.json
298309
dart pub get
299310
300-
- name: Debug anti_phishing.json
301-
run: |
302-
echo "→ Content assets/config:"
303-
ls -l assets/config
304-
cat assets/config/anti_phishing.json
311+
# - name: Debug anti_phishing.json
312+
# run: |
313+
# echo "→ Content assets/config:"
314+
# ls -l assets/config
315+
# cat assets/config/anti_phishing.json
305316

306317
- name: Display Flutter version
307318
run: flutter --version

0 commit comments

Comments
 (0)