Skip to content

Reduce discoverability for now by telling crawlers not to index us (f… #4

Reduce discoverability for now by telling crawlers not to index us (f…

Reduce discoverability for now by telling crawlers not to index us (f… #4

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 10
- uses: actions/setup-node@v4
with:
node-version: 24
cache: pnpm
- run: make build
- uses: actions/upload-pages-artifact@v3
with:
path: dist/
- id: deployment
uses: actions/deploy-pages@v4