Skip to content

forgot to add it to the list of completed projects doh #55

forgot to add it to the list of completed projects doh

forgot to add it to the list of completed projects doh #55

Workflow file for this run

name: Build Eleventy
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x]
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Install dependencies & build
run: |
npm ci
npm run build
- name: Deploy
uses: peaceiris/[email protected]
with:
publish_dir: ./www
github_token: ${{ secrets.GITHUB_TOKEN }}