Skip to content

Commit 0daf1af

Browse files
author
josiauh
committed
windows failed so now i have to fix this
1 parent 430bcb2 commit 0daf1af

File tree

1 file changed

+11
-9
lines changed

1 file changed

+11
-9
lines changed

.github/workflows/flutter_build.yml

+11-9
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,17 @@ jobs:
3131
if: matrix.os == 'ubuntu-latest'
3232
run: sudo apt-get install clang cmake git ninja-build pkg-config libgtk-3-dev liblzma-dev libstdc++-12-dev
3333

34-
- name: Build for ${{ matrix.os }}
35-
run: |
36-
if [ "${{ matrix.os }}" == "ubuntu-latest" ]; then
37-
flutter build linux
38-
elif [ "${{ matrix.os }}" == "macos-latest" ]; then
39-
flutter build macos
40-
elif [ "${{ matrix.os }}" == "windows-latest" ]; then
41-
flutter build windows
42-
fi
34+
- name: Build for Linux
35+
if: matrix.os == 'ubuntu-latest'
36+
run: flutter build linux
37+
38+
- name: Build for macOS
39+
if: matrix.os == 'macos-latest'
40+
run: flutter build macos
41+
42+
- name: Build for Windows
43+
if: matrix.os == 'windows-latest'
44+
run: flutter build windows
4345

4446
- name: Upload build artifacts
4547
uses: actions/[email protected]

0 commit comments

Comments
 (0)