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
# This file was auto-generated by the Firebase CLI | |
# https://github.com/firebase/firebase-tools | |
# modified to work with flutter | |
name: Build for Web and Deploy to Firebase Hosting | |
'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.16.0 | |
- name: Clean build artifacts | |
run: flutter clean | |
- name: Install Flutter dependencies | |
run: flutter pub get | |
- name: Flutter build for web | |
run: flutter build web | |
- name: Deploy to Firebase Hosting | |
uses: FirebaseExtended/action-hosting-deploy@v0 | |
with: | |
repoToken: '${{ secrets.GITHUB_TOKEN }}' | |
firebaseServiceAccount: '${{ secrets.FIREBASE_SERVICE_ACCOUNT_TOURGUIDE_FIREBASE }}' | |
channelId: live | |
projectId: tourguide-firebase | |
env: | |
FIREBASE_CLI_EXPERIMENTS: webframeworks |