Skip to content

Merge pull request #133 from risk-first/dependabot/npm_and_yarn/webpa… #66

Merge pull request #133 from risk-first/dependabot/npm_and_yarn/webpa…

Merge pull request #133 from risk-first/dependabot/npm_and_yarn/webpa… #66

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- master
permissions:
contents: write
jobs:
deploy:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-node@v4
with:
node-version: 18
- name: Install dependencies
run: npm install
- name: Build website
run: npm run build
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./build