Skip to content

Commit 899ca49

Browse files
committed
Add 11ty GitHub Action
1 parent f4a4cf4 commit 899ca49

File tree

1 file changed

+27
-0
lines changed

1 file changed

+27
-0
lines changed

.github/workflows/eleventy_build.yaml

+27
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
name: Eleventy Build
2+
3+
on:
4+
push:
5+
branches:
6+
- main # Set a branch name to trigger deployment
7+
pull_request:
8+
9+
jobs:
10+
build_deploy:
11+
runs-on: ubuntu-latest
12+
permissions:
13+
contents: write
14+
steps:
15+
- uses: actions/checkout@master
16+
- name: Build
17+
uses: TartanLlama/actions-eleventy@master
18+
with:
19+
install_dependencies: true
20+
- name: Deploy
21+
uses: peaceiris/actions-gh-pages@v3
22+
if: github.ref == 'refs/heads/main'
23+
with:
24+
publish_dir: _site
25+
publish_branch: gh-pages
26+
github_token: ${{ secrets.GITHUB_TOKEN }}
27+
cname: json.com

0 commit comments

Comments
 (0)