Skip to content

Instantly share code, notes, and snippets.

@gregsantos
Created July 6, 2020 15:29
Show Gist options
  • Save gregsantos/ecd6c8b5a4183a5bd7a8200adfc1ea5d to your computer and use it in GitHub Desktop.
Save gregsantos/ecd6c8b5a4183a5bd7a8200adfc1ea5d to your computer and use it in GitHub Desktop.
name: CICD
# Triggers the workflow on push to master
on:
push:
branches:
- master
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: Install Dependencies
run: npm install
- name: Build
run: npm run build
env:
CI: false
REACT_APP_FIREBASE_API_URL: REACT_APP_FIREBASE_API_URL
- name: Archive Production Artifact
uses: actions/upload-artifact@master
with:
name: build
path: build
deploy:
name: Deploy
needs: build
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@master
- name: Download Artifact
uses: actions/download-artifact@master
with:
name: build
path: build
- name: Deploy to Firebase
uses: w9jds/firebase-action@v1.3.1
with:
args: deploy --only hosting
env:
FIREBASE_TOKEN: ${{ secrets.FIREBASE_TOKEN }}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment