Skip to content

Build & Deploy

Build & Deploy #34

Workflow file for this run

name: Build & Deploy
on:
push:
branches: [master]
schedule:
- cron: '0 6 * * *'
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6
with:
node-version: 22
cache: npm
- run: npm ci
- name: Fetch GitHub repo metadata
env:
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: node scripts/fetch-repos.mjs
- run: npx astro build
- uses: actions/upload-pages-artifact@7b1f4a764d45c48632c6b24a0339c27f5614fb0b # v4
with:
path: dist/
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@cd2ce8fcbc39b97be8ca5fce6e763baed58fa128 # v5.0.0