Skip to content

Flatten repo structure (#26) #15

Flatten repo structure (#26)

Flatten repo structure (#26) #15

Workflow file for this run

name: pages
on:
push:
branches:
- main
permissions:
contents: read
env:
JLPL_PIXI_VERSION: 0.39.3
jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
shell: bash -l {0}
steps:
- uses: actions/checkout@v4
- uses: prefix-dev/setup-pixi@v0.8.1
with:
pixi-version: v${{ env.JLPL_PIXI_VERSION }}
cache: true
environments: build docs
- run: pixi run docs-lite
- run: pixi run docs
- uses: actions/upload-pages-artifact@v3
with:
path: build/docs
deploy:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4