Skip to content

Merge pull request #166 from azumag/fix/schedule #259

Merge pull request #166 from azumag/fix/schedule

Merge pull request #166 from azumag/fix/schedule #259

Workflow file for this run

name: master branch workflow
on:
push:
branches:
- master
jobs:
firebase-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: '14.x'
- run: yarn
- run: yarn global add nuxt
- run: yarn generate
- run: cd functions &&
npm install &&
npm run build &&
cd ..
- uses: w9jds/firebase-action@master
with:
args: deploy
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}