Skip to content

firebase config

firebase config #129

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main # Set this to your default branch
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: '14' # Set this to the node version you want to use
- name: Install dependencies
run: npm install
- name: Build Tailwind CSS
run: npm run build-css # This should be the same as your local build command
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@4.1.4
with:
branch: gh-pages # The branch the action should deploy to.
folder: . # The folder the action should deploy.