Skip to content

Update README files to promote Fastforge for easier app distribution #23

Update README files to promote Fastforge for easier app distribution

Update README files to promote Fastforge for easier app distribution #23

Workflow file for this run

name: build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.29.1
- run: |
sudo apt-get update -y
sudo apt-get install -y clang cmake ninja-build pkg-config libgtk-3-dev liblzma-dev
- run: flutter build linux -v
working-directory: example
# build-macos:
# runs-on: macos-latest
# steps:
# - uses: actions/checkout@v2
# - uses: subosito/flutter-action@v2
# - run: flutter config --enable-macos-desktop
# - run: cd example && flutter build macos -v
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.29.1
- run: flutter build windows -v
working-directory: example
build-web:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: subosito/flutter-action@v2
with:
channel: stable
flutter-version: 3.29.1
- run: flutter build web -v
working-directory: example