Skip to content

chore: bump verison v2024.1006 #18

chore: bump verison v2024.1006

chore: bump verison v2024.1006 #18

Workflow file for this run

name: GitHub Pages
on:
push:
tags: [ "v*.*" ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-22.04
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: prefix-dev/setup-pixi@v0.8.1
with:
pixi-version: v0.28.2
cache: true
manifest-path: pyproject.toml
environments: docs
- name: Build Docs
run: |
make docs
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
path: ./site
deploy:
needs: build
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2