Skip to content

added initial support for median #115

added initial support for median

added initial support for median #115

Workflow file for this run

name: Docs
on:
push:
branches: [main]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
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 code
uses: actions/checkout@v3
- name: Setup Pages
uses: actions/configure-pages@v4
- name: "Debug: Check files before build"
run: ls -R ./docs || echo "❌ No docs directory found!"
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
path: ./docs/docs_site
name: github-pages
- name: "Debug: Verify uploaded artifact exists"
run: |
ls -lh ./docs/docs_site || echo "❌ Build output missing!"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2
with:
artifact_name: github-pages