Skip to content

Update readme.md

Update readme.md #30

Workflow file for this run

name: Build & Deploy
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v1
- name: Installing project dependencies
run: yarn install
- name: Build site
run: webpack build --mode=production
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4.2.5
with:
branch: gh-pages
folder: dist