Skip to content

Update plugin to use win32_registry version 2.0.0 (#33) #19

Update plugin to use win32_registry version 2.0.0 (#33)

Update plugin to use win32_registry version 2.0.0 (#33) #19

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.22.2
- 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.22.2
- 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.22.2
- run: flutter build web -v
working-directory: example