Skip to content

Commit 32ddc1e

Browse files
authored
Merge pull request #12 from docsforadobe/change/mkdocs
Convert docs from .rst to .md; consistency pass
2 parents 5f3b6e9 + 8ad3f32 commit 32ddc1e

File tree

385 files changed

+38219
-46396
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

385 files changed

+38219
-46396
lines changed

.editorconfig

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

.gitattributes

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Override linguist skipping main folder
2+
docs/** -linguist-documentation
3+
docs/** linguist-detectable

.github/workflows/ci.yml

Lines changed: 33 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1,21 +1,38 @@
1-
name: Deploy Sphinx documentation to Pages
1+
name: ci
22

33
on:
44
push:
5-
branches: [master] # branch to trigger deployment
6-
5+
branches:
6+
- master
7+
- main
8+
permissions:
9+
contents: write
710
jobs:
8-
pages:
9-
runs-on: ubuntu-20.04
10-
environment:
11-
name: github-pages
12-
url: ${{ steps.deployment.outputs.page_url }}
13-
permissions:
14-
pages: write
15-
id-token: write
11+
deploy:
12+
runs-on: ubuntu-latest
1613
steps:
17-
- id: deployment
18-
uses: sphinx-notes/pages@v3
19-
with:
20-
documentation_path: ./docs
21-
requirements_path: ./requirements.txt
14+
- uses: actions/checkout@v4
15+
with:
16+
fetch-depth: 0
17+
- name: Configure Git Credentials
18+
run: |
19+
git config user.name github-actions[bot]
20+
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
21+
22+
- uses: actions/setup-python@v5
23+
with:
24+
python-version: 3.x
25+
26+
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
27+
28+
- uses: actions/cache@v4
29+
with:
30+
key: mkdocs-material-${{ env.cache_id }}
31+
path: .cache
32+
restore-keys: |
33+
mkdocs-material-
34+
35+
- name: Install Python dependencies
36+
uses: py-actions/py-dependency-install@v4
37+
38+
- run: mkdocs gh-deploy --force

.gitignore

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1-
*.vscode
2-
build/
3-
ref/
1+
*.sublime-project
2+
*.sublime-workspace
3+
.DS_Store
4+
.vscode/
5+
__pycache__/
6+
site/
7+
venv/

.readthedocs.yaml

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

.vscode/settings.json

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

Makefile

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

docs/CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
ai-scripting.docsforadobe.dev

docs/_global/.gitignore

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
*.sublime-project
2+
*.sublime-workspace
3+
.DS_Store
4+
.vscode/
5+
__pycache__/
6+
site/
7+
venv/

0 commit comments

Comments
 (0)