Skip to content

Small typo corrections. #148

Small typo corrections.

Small typo corrections. #148

Workflow file for this run

name: Deploy static content to Pages
on:
workflow_dispatch:
push:
branches: ["main"]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy:
name: Deploy to GitHub Pages
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 18
cache: npm
- name: Install packages
run: npm install
- name: Run pre-build scripts
run: npm run build:pre
- name: Build website
run: npm run build
- name: Run post-build scripts
run: npm run build:post
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: build
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4