Skip to content

build(deps): lock file maintenance #223

build(deps): lock file maintenance

build(deps): lock file maintenance #223

Workflow file for this run

name: Build Eleventy
on:
push:
branches:
- main
- master
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: '16'
cache: 'yarn'
- name: Install dependencies & build
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git submodule init
git submodule update
yarn
yarn sass
yarn build
# Prevent GitHub from trying to use Jekyll
touch _site/.nojekyll
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./_site
github_token: ${{ secrets.GITHUB_TOKEN }}