Skip to content

Update README.md

Update README.md #12

name: Build and Deploy
on:
# pull_request:
push:
branches:
- main
# types: [closed]
jobs:
build-and-deploy: # job id
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2.3.1
- name: Install and Build 🔧
run: |
yarn install --frozen-lockfile
yarn build
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@4.1.4
with:
branch: gh-pages # The branch the action should deploy to.
folder: dist # The folder the action should deploy.