From 5203491d15ca2ef67c7a0337277e44da3681fc69 Mon Sep 17 00:00:00 2001 From: Faris Armoush Date: Thu, 12 Jun 2025 14:57:55 +0300 Subject: [PATCH 1/2] upgrade-flutter-version-in-deployment-actions. --- .../workflows/azure-static-web-apps-mango-bush-01e607f10.yml | 2 +- .../workflows/azure-static-web-apps-polite-smoke-017c65c10.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/azure-static-web-apps-mango-bush-01e607f10.yml b/.github/workflows/azure-static-web-apps-mango-bush-01e607f10.yml index 892381f3..64a77fe1 100644 --- a/.github/workflows/azure-static-web-apps-mango-bush-01e607f10.yml +++ b/.github/workflows/azure-static-web-apps-mango-bush-01e607f10.yml @@ -21,7 +21,7 @@ jobs: - name: Set up Flutter uses: subosito/flutter-action@v2 with: - flutter-version: '3.27.3' # Specify the Flutter version you want to use + flutter-version: '3.32.1' # Specify the Flutter version you want to use - name: Install dependencies run: flutter pub get diff --git a/.github/workflows/azure-static-web-apps-polite-smoke-017c65c10.yml b/.github/workflows/azure-static-web-apps-polite-smoke-017c65c10.yml index 6a91fe27..c3a36a5c 100644 --- a/.github/workflows/azure-static-web-apps-polite-smoke-017c65c10.yml +++ b/.github/workflows/azure-static-web-apps-polite-smoke-017c65c10.yml @@ -19,7 +19,7 @@ jobs: - name: Set up Flutter uses: subosito/flutter-action@v2 with: - flutter-version: '3.27.3' # Specify the Flutter version you want to use + flutter-version: '3.32.1' # Specify the Flutter version you want to use - name: Install dependencies run: flutter pub get From fe3b5263a35333ce00eeed1737b75397f013e6b8 Mon Sep 17 00:00:00 2001 From: Faris Armoush Date: Thu, 12 Jun 2025 15:04:21 +0300 Subject: [PATCH 2/2] upgrade to not using webkit renderer command in ci/cd actions because it is deprecated. --- .../workflows/azure-static-web-apps-mango-bush-01e607f10.yml | 2 +- .../workflows/azure-static-web-apps-polite-smoke-017c65c10.yml | 2 +- .github/workflows/pr-check.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/azure-static-web-apps-mango-bush-01e607f10.yml b/.github/workflows/azure-static-web-apps-mango-bush-01e607f10.yml index 64a77fe1..5f872338 100644 --- a/.github/workflows/azure-static-web-apps-mango-bush-01e607f10.yml +++ b/.github/workflows/azure-static-web-apps-mango-bush-01e607f10.yml @@ -27,7 +27,7 @@ jobs: run: flutter pub get - 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 id: builddeploy diff --git a/.github/workflows/azure-static-web-apps-polite-smoke-017c65c10.yml b/.github/workflows/azure-static-web-apps-polite-smoke-017c65c10.yml index c3a36a5c..0721eeec 100644 --- a/.github/workflows/azure-static-web-apps-polite-smoke-017c65c10.yml +++ b/.github/workflows/azure-static-web-apps-polite-smoke-017c65c10.yml @@ -25,7 +25,7 @@ jobs: run: flutter pub get - 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 id: builddeploy diff --git a/.github/workflows/pr-check.yml b/.github/workflows/pr-check.yml index 20a629a4..f6ef8c91 100644 --- a/.github/workflows/pr-check.yml +++ b/.github/workflows/pr-check.yml @@ -26,4 +26,4 @@ jobs: run: flutter pub get - 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