Skip to content

Update README.md

Update README.md #26

Workflow file for this run

name: Build and deploy the app on GitHub Pages
on:
push:
branches:
- main
jobs:
docker:
runs-on: ubuntu-latest
defaults:
run:
shell: bash
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up NodeJS
uses: actions/setup-node@v3
with:
node-version: 20
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Build the app
run: npm run build
- name: Configure CNAME
run: echo sketch.zazuko.com > dist/CNAME
- name: Deploy to GitHub Pages
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: dist