Showing
1 changed file
with
17 additions
and
0 deletions
@@ -52,3 +52,20 @@ jobs: | @@ -52,3 +52,20 @@ jobs: | ||
52 | run: cd printing/example; flutter create -t app --no-overwrite --org net.nfet --project-name example . | 52 | run: cd printing/example; flutter create -t app --no-overwrite --org net.nfet --project-name example . |
53 | - name: Build example for Windows | 53 | - name: Build example for Windows |
54 | run: cd printing/example; flutter build -v windows | 54 | run: cd printing/example; flutter build -v windows |
55 | + | ||
56 | + macos: | ||
57 | + runs-on: macos-latest | ||
58 | + | ||
59 | + steps: | ||
60 | + - uses: actions/checkout@v2 | ||
61 | + - uses: subosito/flutter-action@v1 | ||
62 | + with: | ||
63 | + channel: stable | ||
64 | + - name: Enable macOS for flutter | ||
65 | + run: flutter config --enable-macos-desktop | ||
66 | + - name: Prepare build | ||
67 | + run: cd printing/example; flutter create -t app --no-overwrite --org net.nfet --project-name example . | ||
68 | + - name: Build example for macOS | ||
69 | + run: cd printing/example; flutter build -v macos | ||
70 | + # - name: Build example for iOS | ||
71 | + # run: cd printing/example; flutter build -v ios |
-
Please register or login to post a comment