Bump micromatch from 4.0.7 to 4.0.8 (#19) #22
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 }} | |