Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
33 changes: 33 additions & 0 deletions .github/workflows/release-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Release Documentation

on:
workflow_dispatch:

permissions:
contents: read

jobs:
github-pages-release:
name: Push to github pages
runs-on: ubuntu-latest

permissions:
contents: write # Required for pushing to gh-pages branch

steps:
- name: Checkout repository
uses: actions/checkout@v5
with:
fetch-depth: 0 # Fetch all history for proper gh-pages deployment
persist-credentials: false

- name: Set up Python
uses: actions/setup-python@v6
with:
python-version: '3.x'

- name: Deploy docs
run: |
set -eux # fail on error
pip install -r docs/requirements-docs.txt
mkdocs gh-deploy
26 changes: 0 additions & 26 deletions .pipelines/templates/build-analyzer.yml

This file was deleted.

41 changes: 0 additions & 41 deletions .pipelines/templates/build-and-push-containers.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .pipelines/templates/build-anonymizer.yml

This file was deleted.

23 changes: 0 additions & 23 deletions .pipelines/templates/build-cli.yml

This file was deleted.

34 changes: 0 additions & 34 deletions .pipelines/templates/build-image-redactor.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .pipelines/templates/build-python.yml

This file was deleted.

26 changes: 0 additions & 26 deletions .pipelines/templates/build-structured.yml

This file was deleted.

Loading