Skip to content

Commit

Permalink
chore(ci): Web deploy workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bdlukaa committed Jan 23, 2024
1 parent c70814e commit a3bfc24
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -349,3 +349,28 @@ jobs:
run: |
flutterpi_tool build --release --cpu=pi4
build_web:
name: Bluecherry Web
runs-on: windows-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
token: ${{ secrets.GITHUB_TOKEN }}
submodules: recursive

- name: Install Flutter
uses: subosito/flutter-action@v2.8.0
with:
channel: "stable"
cache: false

- name: Initiate Flutter
run: |
flutter gen-l10n
flutter pub get
- name: Build
run: |
flutter build web --verbose --dart-define=FLUTTER_WEB_USE_SKIA=true --dart-define=FLUTTER_WEB_AUTO_DETECT=true

0 comments on commit a3bfc24

Please sign in to comment.