Skip to content

Update description, publications, TA #10

Update description, publications, TA

Update description, publications, TA #10

Workflow file for this run

name: Build Eleventy
on:
push:
branches:
- main
pull_request:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- name: Install node.js
uses: actions/setup-node@v2
with:
node-version: "17"
- name: Install dependencies & build
run: |
npm install
npm run build
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
if: ${{ github.ref == 'refs/heads/main' }}
with:
publish_dir: ./_site
github_token: ${{ secrets.GITHUB_TOKEN }}