Skip to content

Merge branch 'master' of https://github.com/elidakirigo/automation #5

Merge branch 'master' of https://github.com/elidakirigo/automation

Merge branch 'master' of https://github.com/elidakirigo/automation #5

Workflow file for this run

name: Firebase Continuous Deployment
on:
push:
branches: [ master ]
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: actions/setup-node@master
with:
node-version: 12
- run: npm ci
- run: npm run build
- uses: w9jds/firebase-action@master
with:
args: deploy --only hosting
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}