Skip to content

Update build page #90

Update build page

Update build page #90

Workflow file for this run

name: Eleventy Build
on:
push:
branches:
- main
workflow_dispatch:
jobs:
build_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18
- name: Install dependencies & build
run: |
npm ci
- run: npx @11ty/eleventy --serve
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: dist
github_token: ${{ secrets.GITHUB_TOKEN }}