Skip to content

Commit

Permalink
chore: add build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
GoOz committed Feb 11, 2025
1 parent 58940b1 commit 8c11126
Show file tree
Hide file tree
Showing 4 changed files with 4,693 additions and 1 deletion.
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: Eleventy Build
on: [push]

jobs:
build_deploy:
runs-on: ubuntu-18.04
steps:
- uses: actions/checkout@master
- name: Build
uses: TartanLlama/actions-eleventy@master
with:
install_dependencies: true
- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
publish_dir: _site
publish_branch: gh-pages
github_token: ${{ secrets.GITHUB_TOKEN }}
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
_site/
node_modules/
package-lock.json
Empty file added .nojekyll
Empty file.
Loading

0 comments on commit 8c11126

Please sign in to comment.