Skip to content

Commit 0ba224a

Browse files
tamirkamaraSharonHartomri374
authored
Publish docs via Github Actions (#1749)
* remove old azure pipelines * docs in github actions * update permissions * trigger workflow * again * remove last pipe --------- Co-authored-by: Sharon Hart <sharonh.dev@gmail.com> Co-authored-by: Omri Mendels <omri374@users.noreply.github.com>
1 parent ae64fe5 commit 0ba224a

18 files changed

+33
-947
lines changed

.github/workflows/release-docs.yml

Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Release Documentation
2+
3+
on:
4+
workflow_dispatch:
5+
6+
permissions:
7+
contents: read
8+
9+
jobs:
10+
github-pages-release:
11+
name: Push to github pages
12+
runs-on: ubuntu-latest
13+
14+
permissions:
15+
contents: write # Required for pushing to gh-pages branch
16+
17+
steps:
18+
- name: Checkout repository
19+
uses: actions/checkout@v5
20+
with:
21+
fetch-depth: 0 # Fetch all history for proper gh-pages deployment
22+
persist-credentials: false
23+
24+
- name: Set up Python
25+
uses: actions/setup-python@v6
26+
with:
27+
python-version: '3.x'
28+
29+
- name: Deploy docs
30+
run: |
31+
set -eux # fail on error
32+
pip install -r docs/requirements-docs.txt
33+
mkdocs gh-deploy

.pipelines/templates/build-analyzer.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.pipelines/templates/build-and-push-containers.yml

Lines changed: 0 additions & 41 deletions
This file was deleted.

.pipelines/templates/build-anonymizer.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.pipelines/templates/build-cli.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

.pipelines/templates/build-image-redactor.yml

Lines changed: 0 additions & 34 deletions
This file was deleted.

.pipelines/templates/build-python.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

.pipelines/templates/build-structured.yml

Lines changed: 0 additions & 26 deletions
This file was deleted.

0 commit comments

Comments
 (0)