Skip to content

Bump micromatch from 4.0.7 to 4.0.8 (#19) #22

Bump micromatch from 4.0.7 to 4.0.8 (#19)

Bump micromatch from 4.0.7 to 4.0.8 (#19) #22

name: Build Site with Eleventy
on:
push:
branches:
- main
paths-ignore:
- README.md
- LICENSE
jobs:
build-deploy:
name: Build
runs-on: ubuntu-latest
steps:
- name: Git Checkout
uses: actions/checkout@v3
- name: Setup Node and Yarn
uses: actions/setup-node@v3
with:
cache: yarn
- run: yarn install --frozen-lockfile
- run: yarn build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: _site
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}