Skip to content

living-content-changed #99

living-content-changed

living-content-changed #99

Workflow file for this run

name: Deploy living web app
on:
push:
branches: [main]
repository_dispatch:
types: [living-content-changed]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v7
- uses: pnpm/action-setup@v6
with:
version: 10.33.0
- uses: actions/setup-node@v7
with:
node-version: 22.22.2
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm build
- uses: actions/configure-pages@v6
- uses: actions/upload-pages-artifact@v5
with:
path: dist
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-24.04
needs: build
steps:
- name: Deploy
id: deployment
uses: actions/deploy-pages@v5