37 lines
881 B
YAML
37 lines
881 B
YAML
|
|
name: Build web app
|
|
|
|
on:
|
|
push:
|
|
branches: [ "main" ]
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Setup Flutter
|
|
uses: subosito/flutter-action@v2
|
|
with:
|
|
channel: 'stable'
|
|
- run: flutter --version
|
|
|
|
- name: Cache pub dependencies
|
|
uses: actions/cache@v2
|
|
with:
|
|
path: ${{ env.FLUTTER_HOME }}/.pub-cache
|
|
key: ${{ runner.os }}-pub-${{ hashFiles('**/pubspec.lock') }}
|
|
restore-keys: ${{ runner.os }}-pub-
|
|
|
|
- name: Download pub dependencies
|
|
run: flutter pub get
|
|
|
|
- name: Build Web App
|
|
run: cd example && flutter build web --base-href=/universal_ble/
|
|
|
|
- name: Deploy to GitHub Pages 🚀
|
|
uses: JamesIves/github-pages-deploy-action@v4
|
|
with:
|
|
folder: example/build/web
|