Skip to content
This repository has been archived by the owner on Sep 7, 2023. It is now read-only.

Update README.md

Update README.md #68

Workflow file for this run

name: Main
on:
push:
branches:
- main
permissions:
contents: write
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install and Build 🔧
run: |
npm ci --audit=false --legacy-peer-deps
npm run build
- name: Publish 🚀
uses: JS-DevTools/[email protected]
with:
token: ${{ secrets.NPM_TOKEN }}
- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
with:
BRANCH: gh-pages
FOLDER: build
CLEAN: true
clean-exclude: |
.nojekyll