Skip to content

Commit

Permalink
Merge pull request #66 from Kuadrant/simpler-build
Browse files Browse the repository at this point in the history
deploy with regular npx
  • Loading branch information
openshift-merge-bot[bot] authored Aug 21, 2024
2 parents 7a9c918 + cebb4ec commit 3474d0f
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 3474d0f

Please sign in to comment.