Skip to content

fix: restore 'Built for the agent era' text alongside GitHub icon (#29) #53

fix: restore 'Built for the agent era' text alongside GitHub icon (#29)

fix: restore 'Built for the agent era' text alongside GitHub icon (#29) #53

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
concurrency:
group: pages
cancel-in-progress: true
jobs:
checks:
uses: ./.github/workflows/_checks.yml
build:
needs: checks
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- run: npm ci
- run: npm run build
- uses: actions/upload-pages-artifact@v3
with:
path: dist
deploy:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4