blob: 7800d999b4349a0747c5ec7a73da2c563c02214d [file] [log] [blame]
name: Deploy to web
on:
# Enable manual run
workflow_dispatch:
inputs:
environment:
description: "Environment to deploy web build"
required: true
default: "staging"
type: choice
options:
- staging
- prod
# Declare default permissions as read only.
permissions: read-all
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
# Set up Flutter.
- name: Clone Flutter repository with master channel
uses: subosito/flutter-action@1e6ee87cb840500837bcd50a667fb28815d8e310
with:
channel: master
- run: flutter doctor -v
- name: Install web dependencies
uses: actions/setup-node@969bd2663942d722d85b6a8626225850c2f7be4b
with:
node-version: "14"
- run: npm install -g firebase-tools@11.0.1
# Checkout gallery code and get packages.
- name: Checkout gallery code
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b
- run: flutter pub get
# Build and deploy (by default, to staging).
- run: flutter build -v web --release
- run: firebase deploy --only hosting:${{ github.event.inputs.environment || 'staging' }}
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}