Skip to content

Add RFC quiz hub and Markdown explanations #54

Add RFC quiz hub and Markdown explanations

Add RFC quiz hub and Markdown explanations #54

Workflow file for this run

name: sitemap
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: write
jobs:
build-sitemap:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: cicirello/generate-sitemap@v1
with:
base-url-path: https://toppymicros.com/
- name: Commit sitemap
run: |
git config user.name "github-actions[bot]"
git config user.email "github-actions[bot]@users.noreply.github.com"
git add sitemap.xml
git commit -m "Update sitemap" || echo "No changes"
git push