update CI script

This commit is contained in:
Amruth Pillai 2020-03-29 18:18:18 +05:30
parent cb321f6292
commit f459427759
No known key found for this signature in database
GPG Key ID: 09959E21662F51A0
1 changed files with 6 additions and 20 deletions

View File

@ -1,36 +1,22 @@
name: Build and Deploy
name: Build & Deploy
on:
push:
branches: [ master ]
branches: [master]
jobs:
build:
name: Build
name: Build & Deploy
runs-on: ubuntu-latest
steps:
- name: Checkout GitHub Repository
uses: actions/checkout@v2.0.0
- name: Install Project Dependencies
run: npm install
- name: Build in Production
- name: Build App
run: npm run build
- name: Archive Production Artifact
uses: actions/upload-artifact@v1.0.0
with:
name: build
path: build
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout GitHub Repository
uses: actions/checkout@v2.0.0
- name: Download Artifact
uses: actions/download-artifact@v1.0.0
with:
name: build
- name: Build Documentation
run: npm run docs:build
- name: Deploy to Firebase Hosting
uses: w9jds/firebase-action@v1.3.0
with: