From 62c9108a68c565000a23894853d339c6fa0b9728 Mon Sep 17 00:00:00 2001 From: Ishan Pandhare Date: Sun, 9 Oct 2022 11:13:01 +0530 Subject: [PATCH] feat: updated ci.yaml to support windows platform --- .github/workflows/ci.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 204e455d94..3d5631b935 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -20,7 +20,7 @@ jobs: - os: macos-latest flutter_profile: development-mac-x86_64 - os: windows-latest - flutter_profile: development-windows-x86_64 + flutter_profile: development(production)-windows-x86 runs-on: ${{ matrix.os }} steps: @@ -85,6 +85,8 @@ jobs: flutter config --enable-linux-desktop elif [ "$RUNNER_OS" == "macOS" ]; then flutter config --enable-macos-desktop + if [ "$RUNNER_OS" == "windows" ]; then + flutter config --enable-windows-desktop fi shell: bash