Skip to content

Commit 6a93294

Browse files
authored
Temporarily disable generate-docs.yml
- Commented out the Generate Documentation workflow to prevent it from running. - Disabled all triggers and jobs in the workflow file. - This is a temporary change and can be re-enabled when documentation generation is needed.
1 parent 9c00a45 commit 6a93294

File tree

1 file changed

+35
-33
lines changed

1 file changed

+35
-33
lines changed
Lines changed: 35 additions & 33 deletions
Original file line numberDiff line numberDiff line change
@@ -1,35 +1,37 @@
11
name: Generate Documentation
22

3-
on:
4-
push:
5-
branches:
6-
- main
7-
8-
jobs:
9-
generate-docs:
10-
runs-on: ubuntu-latest
11-
12-
steps:
13-
- name: Checkout code
14-
uses: actions/checkout@v3
15-
with:
16-
fetch-depth: 0
17-
18-
- name: Debug root directory
19-
run: ls -R
20-
21-
- name: Debug docs directory
22-
run: ls docs || echo "docs/ directory not found"
23-
24-
- name: Set up Python
25-
uses: actions/setup-python@v4
26-
with:
27-
python-version: 3.10
28-
29-
- name: Install Sphinx
30-
run: |
31-
python -m pip install --upgrade pip
32-
pip install sphinx sphinx-rtd-theme
33-
34-
- name: Build Documentation
35-
run: sphinx-build -b html docs/ build/
3+
# Disabled workflow for Generate Documentation
4+
5+
# on:
6+
# push:
7+
# branches:
8+
# - main
9+
10+
# jobs:
11+
# generate-docs:
12+
# runs-on: ubuntu-latest
13+
14+
# steps:
15+
# - name: Checkout code
16+
# uses: actions/checkout@v3
17+
# with:
18+
# fetch-depth: 0
19+
20+
# - name: Debug root directory
21+
# run: ls -R
22+
23+
# - name: Debug docs directory
24+
# run: ls docs || echo "docs/ directory not found"
25+
26+
# - name: Set up Python
27+
# uses: actions/setup-python@v4
28+
# with:
29+
# python-version: 3.10
30+
31+
# - name: Install Sphinx
32+
# run: |
33+
# python -m pip install --upgrade pip
34+
# pip install sphinx sphinx-rtd-theme
35+
36+
# - name: Build Documentation
37+
# run: sphinx-build -b html docs/ build/

0 commit comments

Comments
 (0)