Files
radio-otherway/.github/workflows/firebase-hosting-merge.nopeml
2023-03-06 17:28:18 +00:00

25 lines
570 B
Plaintext

name: Deploy to Firebase
on:
push:
branches: [ develop ]
defaults:
run:
working-directory: web
jobs:
build_and_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Install Dependencies
run: yarn
- name: Build
run: yarn build
- name: Deploy to Firebase
uses: w9jds/firebase-action@master
with:
args: deploy --only functions,hosting
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
FIREBASE_CLI_EXPERIMENTS: webframeworks