Skip to content

chore: update documentation workflow #5

chore: update documentation workflow

chore: update documentation workflow #5

Workflow file for this run

name: Deploy Docs
on: [push]
jobs:
build_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Build
uses: TartanLlama/actions-eleventy@master
with:
args: --input=docs
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: _site
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}