38 lines
957 B
YAML
38 lines
957 B
YAML
# This file was auto-generated by the Firebase CLI
|
|
# https://github.com/firebase/firebase-tools
|
|
|
|
name: Deploy to Firebase Hosting on merge
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
jobs:
|
|
build_and_deploy:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Set up Flutter
|
|
uses: subosito/flutter-action@v2
|
|
with:
|
|
flutter-version: '3.32.6'
|
|
channel: stable
|
|
|
|
- name: Install dependencies
|
|
run: flutter pub get
|
|
|
|
# - name: Run tests
|
|
# run: flutter test
|
|
|
|
- name: Build Flutter Web
|
|
run: flutter build web --release
|
|
|
|
- name: Deploy to Firebase Hosting
|
|
uses: FirebaseExtended/action-hosting-deploy@v0
|
|
with:
|
|
repoToken: ${{ secrets.GITHUB_TOKEN }}
|
|
firebaseServiceAccount: ${{ secrets.FIREBASE_SERVICE_ACCOUNT_WESALAPP_BC676 }}
|
|
channelId: live
|
|
projectId: wesalapp-bc676
|