Skip to content

chore: bump version to 0.2.0 and update changelog #38

chore: bump version to 0.2.0 and update changelog

chore: bump version to 0.2.0 and update changelog #38

Workflow file for this run

name: Update GitHub Pages
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: pages
cancel-in-progress: false
jobs:
build-pages:
name: Build Pages
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v6
- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: "3.11"
- name: Build pages content
env:
GITHUB_TOKEN: ${{ github.token }}
GITHUB_REPOSITORY: ${{ github.repository }}
run: python scripts/build_pages.py
- name: Upload Pages artifact
uses: actions/upload-pages-artifact@v4
with:
path: ./
deploy-pages:
name: Deploy to GitHub Pages
runs-on: ubuntu-latest
needs: build-pages
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4