From a86866b35f7f42d8eeb771bcaf7a0159ca7ff3ec Mon Sep 17 00:00:00 2001 From: David Senk Date: Tue, 3 Sep 2024 17:15:26 -0400 Subject: [PATCH] added windows build --- .github/workflows/windows.yaml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/windows.yaml diff --git a/.github/workflows/windows.yaml b/.github/workflows/windows.yaml new file mode 100644 index 0000000..ca15e7b --- /dev/null +++ b/.github/workflows/windows.yaml @@ -0,0 +1,28 @@ +name: Build Windows + +on: + push: + branches: + - devel + pull_request: + branches: + - devel + +jobs: + build: + runs-on: windows-latest + + steps: + - name: Checkout code + uses: actions/checkout@v2 + + - name: Install Flutter + uses: subosito/flutter-action@v2 + with: + flutter-version: 'stable' + + - name: Install dependencies + run: flutter pub get + + - name: Build for Windows + run: flutter build windows