File tree 1 file changed +11
-9
lines changed
1 file changed +11
-9
lines changed Original file line number Diff line number Diff line change @@ -31,15 +31,17 @@ jobs:
31
31
if : matrix.os == 'ubuntu-latest'
32
32
run : sudo apt-get install clang cmake git ninja-build pkg-config libgtk-3-dev liblzma-dev libstdc++-12-dev
33
33
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
43
45
44
46
- name : Upload build artifacts
45
47
You can’t perform that action at this time.
0 commit comments