Skip to content

Update CNAME

Update CNAME #18

Workflow file for this run

name: Build and GH-Page Deploy
on:
push:
branches:
- main
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: 16.15
- name: Install
run: yarn install
- name: Build
run: yarn build
- name: Deploy to GH Page
uses: JamesIves/github-pages-deploy-action@4.1.1
with:
branch: gh-pages
folder: dist
single-commit: false