Update CI configuration for Python 3.13 and switch to Hatchling for b… #8
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish GeoST GH-pages | |
on: | |
push: | |
tags: ['*'] | |
permissions: write-all | |
concurrency: | |
group: "pages" | |
cancel-in-progress: false | |
jobs: | |
deploy: | |
runs-on: ubuntu-latest | |
environment: | |
name: github-pages | |
steps: | |
- name: Check out repo | |
uses: actions/checkout@v4 | |
- name: Setup Pixi | |
uses: prefix-dev/setup-pixi@v0.8.1 | |
with: | |
manifest-path: pyproject.toml | |
- name: Build docs | |
run: pixi run docs | |
- name: Deploy to Github Pages | |
uses: peaceiris/actions-gh-pages@v4 | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
publish_dir: ./docs/build |