Skip to content

Remove default ordering of software by version #4

Remove default ordering of software by version

Remove default ordering of software by version #4

Workflow file for this run

name: GitHub Pages
on:
push:
branches:
- "master"
paths:
- ".github/workflows/update-docs.ya?ml"
- "mkdocs.ya?ml"
- "poetry.lock"
- "pyproject.toml"
- "docs/**"
env:
SITE_URL: https://upstreamdatainc.github.io/goosebit
jobs:
publish:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Install Python
uses: actions/setup-python@v5
with:
python-version: 3.12
- name: Install Poetry
run: pip install poetry
- name: Install Dependencies
run: poetry install --no-root --with docs
- name: Deploy website
run: poetry run mkdocs gh-deploy --theme material --force --no-history