Skip to content

Remove branch option and try again #5

Remove branch option and try again

Remove branch option and try again #5

Workflow file for this run

name: Eleventy Build and Deploy
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 }}