Skip to content

feat: auto generate OG images if not set #8

feat: auto generate OG images if not set

feat: auto generate OG images if not set #8

Workflow file for this run

---
name: Build and deploy
permissions:
contents: read
pages: write
id-token: write
on:
push:
branches: main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install, build, and upload site
uses: withastro/action@v3
with:
node-version: 22
deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
uses: actions/deploy-pages@v4