Skip to content

new permalink format #12

new permalink format

new permalink format #12

Workflow file for this run

name: Build and Deploy Eleventy
on:
push:
branches: [main]
jobs:
build_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build
uses: TartanLlama/actions-eleventy@master
with:
install_dependencies: true
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./_site
github_token: ${{ secrets.GITHUB_TOKEN }}