Skip to content

Update dependency @11ty/eleventy-img to v5 #11

Update dependency @11ty/eleventy-img to v5

Update dependency @11ty/eleventy-img to v5 #11

Workflow file for this run

name: Static Site
on:
push:
jobs:
build:
name: Build
runs-on: ubuntu-24.04
env:
ELEVENTY_PATH_PREFIX: website
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Build site
run: npm run build
- name: Upload artifacts
uses: actions/upload-pages-artifact@v3
with:
path: dist
deploy:
if: github.ref_name == github.event.repository.default_branch
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4