Skip to content

Fix styling

Fix styling #41

Workflow file for this run

name: Build and deploy
on:
push:
branches:
- main
workflow_dispatch:
repository_dispatch:
types: [plasmic]
permissions:
contents: write
jobs:
job:
name: Build and deploy
runs-on: ubuntu-latest
steps:
- id: checkout
name: Check out repository
uses: actions/checkout@v2
with:
persist-credentials: false
fetch-depth: 0
- uses: actions/setup-node@v3
with:
node-version: '18.x'
registry-url: 'https://registry.npmjs.org'
cache: 'yarn'
- run: yarn install
- id: build
name: Build website
run: yarn build
- id: gh-pages
name: Publish to GitHub Pages
uses: JamesIves/[email protected]
with:
branch: gh-pages
folder: ./build