Skip to content

feat: add script to generate release notes #208

feat: add script to generate release notes

feat: add script to generate release notes #208

Workflow file for this run

name: Deploy website to GitHub Pages
on:
push:
branches: ["main"]
workflow_dispatch:
# Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write
# Allow one concurrent deployment
concurrency:
group: "pages"
cancel-in-progress: true
jobs:
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.13"
- name: Install dependencies
run: python3 -m pip install markdown python-frontmatter
- name: Generate website
run: python3 scripts/generate-website.py
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: "./output"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@main