Skip to content

Commit

Permalink
update readme for desktop build (closes #86)
Browse files Browse the repository at this point in the history
  • Loading branch information
subosito committed Jan 6, 2022
1 parent 8af4ab6 commit 813937b
Showing 1 changed file with 30 additions and 0 deletions.
30 changes: 30 additions & 0 deletions README.md
Expand Up @@ -113,3 +113,33 @@ jobs:
- run: flutter build windows
```

Build for Linux desktop:

```yaml
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
with:
channel: beta
- run: flutter config --enable-linux-desktop
- run: flutter build linux
```

Build for macOS desktop:

```yaml
jobs:
build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
with:
channel: beta
- run: flutter config --enable-macos-desktop
- run: flutter build macos
```

0 comments on commit 813937b

Please sign in to comment.