Skip to content

Commit

Permalink
Adds the github workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
SaptakS committed Nov 9, 2024
1 parent 18e1e4a commit 01f236a
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/eleventy_build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Eleventy Build
on:
push:
branches:
- 'main'

jobs:
build_deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@main
- name: Build
uses: TartanLlama/[email protected]
with:
install_dependencies: true
args: --pathprefix 2023
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: _site
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 01f236a

Please sign in to comment.