Skip to content

Another attempt after setting write permission #7

Another attempt after setting write permission

Another attempt after setting write permission #7

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 Eleventy Site
uses: TartanLlama/actions-eleventy@master
with:
install_dependencies: true
- name: Deploy to GitHub Pages
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: ./_site
github_token: ${{ secrets.GITHUB_TOKEN }}