From 3e0bfad7d144d8626ef8984c91bd5c54a2092504 Mon Sep 17 00:00:00 2001 From: Tony Bark <35226681+tonytins@users.noreply.github.com> Date: Sat, 29 May 2021 12:20:06 -0400 Subject: [PATCH] Enable desktop configurations --- .github/workflows/flutter.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/flutter.yml b/.github/workflows/flutter.yml index d215405..ae7da18 100644 --- a/.github/workflows/flutter.yml +++ b/.github/workflows/flutter.yml @@ -20,6 +20,7 @@ jobs: with: channel: "stable" - run: flutter pub get + - run: flutter config --enable-linux-desktop - run: flutter build linux android: @@ -44,6 +45,7 @@ jobs: with: channel: "stable" - run: flutter pub get + - run: flutter config --enable-macos-desktop - run: flutter build macos --release --no-codesign ios: @@ -54,7 +56,6 @@ jobs: with: channel: "stable" - run: flutter pub get - - run: flutter build ios --release --no-codesign windows: @@ -65,4 +66,5 @@ jobs: with: channel: "stable" - run: flutter pub get + - run: flutter config --enable-windows-desktop - run: flutter build windows