mirror of
https://github.com/AmruthPillai/Reactive-Resume.git
synced 2025-11-22 20:51:29 +10:00
40 lines
965 B
YAML
40 lines
965 B
YAML
name: Build and Deploy
|
|
|
|
on:
|
|
push:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
name: Build
|
|
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
|
|
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: Deploy to Firebase Hosting
|
|
uses: w9jds/firebase-action@v1.3.0
|
|
with:
|
|
args: deploy --only hosting
|
|
env:
|
|
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
|