Skip to content
This repository has been archived by the owner on May 31, 2024. It is now read-only.

Update README.md

Update README.md #98

Workflow file for this run

name: Eleventy Build and deployt to gh-pages
on:
push:
branches:
- main
jobs:
build_deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@master
- name: Install
run: |
npm install
npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v1.1.0
env:
PUBLISH_DIR: _site
PUBLISH_BRANCH: gh-pages
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}