- Add empty
.nojekyll
to root. - Add scripts command
"build": "eleventy"
inpackage.json
. - Add workflow
.github/workflows/eleventy_build.yml
.
name: Eleventy Build
on:
push:
branches:
- main
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: '>=20'
- run: npm ci
- run: npm run ghpages
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
deploy_key: ${{ secrets.ACTIONS_DEPLOY_KEY }}
publish_dir: ./public
- Run this command and then add the key value to repo settings | deploy keys.
ssh-keygen -t rsa -b 4096 -C "$(git config user.email)" -f gh-pages -N ""