Skip to content

The graph opens the film, and the README stops apologising #2

The graph opens the film, and the README stops apologising

The graph opens the film, and the README stops apologising #2

Workflow file for this run

# Publishes docs/site/ — and nothing else — to GitHub Pages.
# One-time repo setting: Settings → Pages → Source: "GitHub Actions".
name: pages
on:
push:
branches: [main]
paths: ["docs/site/**", ".github/workflows/pages.yml"]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- uses: actions/configure-pages@v5
- uses: actions/upload-pages-artifact@v3
with:
path: docs/site
- id: deployment
uses: actions/deploy-pages@v4