Skip to content

dcmclient 0.4.0 — the turnkey DICOM command-line client #18

dcmclient 0.4.0 — the turnkey DICOM command-line client

dcmclient 0.4.0 — the turnkey DICOM command-line client #18

Workflow file for this run

name: docs
on:
push:
branches: [main]
permissions:
contents: read
pages: write
id-token: write
jobs:
build-deploy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.12"
- run: pip install -r docs/requirements.txt
- run: mkdocs build --strict
- uses: actions/upload-pages-artifact@v3
with:
path: site
- uses: actions/deploy-pages@v4