upgrade to not using webkit renderer command in ci/cd actions because it is deprecated.

This commit is contained in:
Faris Armoush
2025-06-12 15:04:21 +03:00
parent c3a0c48501
commit fe3b5263a3
3 changed files with 3 additions and 3 deletions

View File

@ -27,7 +27,7 @@ jobs:
run: flutter pub get run: flutter pub get
- name: Build Flutter Web App - name: Build Flutter Web App
run: flutter build web --web-renderer canvaskit -t lib/main.dart run: flutter build web --release -t lib/main.dart
- name: Build And Deploy - name: Build And Deploy
id: builddeploy id: builddeploy

View File

@ -25,7 +25,7 @@ jobs:
run: flutter pub get run: flutter pub get
- name: Build Flutter Web App - name: Build Flutter Web App
run: flutter build web --web-renderer canvaskit -t lib/main_dev.dart run: flutter build web --release -t lib/main_dev.dart
- name: Build And Deploy - name: Build And Deploy
id: builddeploy id: builddeploy

View File

@ -26,4 +26,4 @@ jobs:
run: flutter pub get run: flutter pub get
- name: Run Flutter Build - name: Run Flutter Build
run: flutter build web --web-renderer canvaskit -t lib/main_dev.dart run: flutter build web --release -t lib/main_dev.dart