Remove default ordering of software by version #4
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: 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 |