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

Update README.md

Update README.md #224

Workflow file for this run

name: Build and Deploy
on:
push:
branches:
- main
jobs:
build-and-deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Use Node.js 16.19
uses: actions/setup-node@v2
with:
node-version: 16.19
- name: Install and Build 🔧
run: |
npm install
npm run docs:build
- name: Install SSH Client 🔑
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
- name: Deploy 🚀
uses: JamesIves/[email protected]
with:
BASE_BRANCH: main
BRANCH: gh-pages
FOLDER: docs
CLEAN: true
SSH: true