Skip to content

Fix: Link to image in step 27 & 28 #7

Fix: Link to image in step 27 & 28

Fix: Link to image in step 27 & 28 #7

Workflow file for this run

name: "Deploy to GH pages"
on:
push:
branches: [main]
env:
HUSKY_SKIP: true
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.x
- name: Install dependencies
run: npm install
- name: Build and validate all steps
run: node tools/prepare-gh-pages.js
- name: Deploy to GH pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./dist
force_orphan: true
enable_jekyll: true