Skip to content

Commit

Permalink
deploy with regular npx
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonmadigan committed Aug 21, 2024
1 parent 7a9c918 commit 7b42433
Showing 1 changed file with 11 additions and 8 deletions.
19 changes: 11 additions & 8 deletions .github/workflows/eleventy_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,19 +6,22 @@ on:
jobs:
build_deploy:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master
- uses: actions/setup-node@v4

- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 18
node-version: '18'
cache: 'npm'

- name: Install Dependencies
run: npm install

- name: Build
uses: TartanLlama/actions-eleventy@master
with:
install_dependencies: true
args: --output _site
- name: Find
run: find .
run: npx @11ty/eleventy --input src --output _site

- name: Deploy
uses: peaceiris/actions-gh-pages@v3
with:
Expand Down

0 comments on commit 7b42433

Please sign in to comment.