Skip to content

fix(seo): correct OG image tagline #29

fix(seo): correct OG image tagline

fix(seo): correct OG image tagline #29

Workflow file for this run

name: CI
on:
pull_request:
branches: [main]
push:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: "1.25"
- name: Install hype
run: go install github.com/gopherguides/hype/cmd/hype@main
- name: Build site
run: hype blog build
- name: Verify output
run: |
test -f public/index.html || (echo "Missing index.html" && exit 1)
test -f public/rss.xml || (echo "Missing rss.xml" && exit 1)
test -f public/sitemap.xml || (echo "Missing sitemap.xml" && exit 1)