Add update whats new lane #30
Workflow file for this run
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
name: Firebase Hosting Deploy | |
on: | |
push: | |
branches: | |
- main # Trigger on pushes to the main branch. Change this as needed. | |
pull_request: # Temporarily use it to test | |
branches: | |
- main | |
jobs: | |
build: | |
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.19.0' | |
- name: Clean build | |
run: flutter clean | |
- name: Install dependencies | |
run: flutter pub get | |
- name: Set environment variables | |
run: | | |
echo "OPENAI_API_KEY=${{ secrets.OPENAI_API_KEY }}" >> .env | |
echo "AMPLIFY_CONFIG=${{ secrets.AMPLIFY_CONFIG }}" >> .env | |
- name: Build Flutter Web | |
run: flutter build web | |
# The web gives error GET https://composites-ai.web.app/assets/.env 404 (Not Found) | |
# Let's use local deploy for now | |
# TODO: fix the web error for Deploy to Firebase Hosting | |
# - name: Deploy to Firebase Hosting | |
# env: | |
# FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }} | |
# run: | | |
# npm install -g firebase-tools | |
# firebase deploy |