Skip to content
This repository has been archived by the owner on May 30, 2024. It is now read-only.

Update manual.yml

Update manual.yml #9

Workflow file for this run

name: GH Pages
on:
push:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3
- run: npm i
- run: ./node_modules/.bin/parcel build src/index.html --public-url .
- name: GitHub Pages
uses: crazy-max/ghaction-github-pages@v3
with:
build_dir: dist
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}