fix(deps): update dependency com.android.tools.build:gradle to v8.7.3 #239
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: | |
push: | |
branches: [ "main" ] | |
pull_request: | |
branches: [ "main" ] | |
name: Build and Release Web | |
jobs: | |
build: | |
name: Build Web | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Flutter | |
uses: subosito/flutter-action@v2 | |
with: | |
channel: 'stable' | |
flutter-version: '3.7.12' | |
- name: Flutter doctor -v | |
run: flutter doctor -v | |
- name: Install Deps | |
run: flutter pub get | |
- name: Build Web | |
run: flutter build web --no-tree-shake-icons --web-renderer canvaskit --base-href /flutter-boilerplate/ | |
- name: Deploy | |
uses: peaceiris/actions-gh-pages@v3 | |
with: | |
personal_token: ${{ secrets.FLUTTER_BOILERPLATE_BOT_TOKEN }} | |
publish_dir: ./build/web |