Skip to content

Commit 6855381

Browse files
authored
Merge pull request #5 from docsforadobe/change/mkdocs
Convert to mkdocs; reorganize codebase
2 parents bd7d152 + aba38a1 commit 6855381

33 files changed

+4536
-4244
lines changed

.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: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,38 @@
1+
name: ci
2+
3+
on:
4+
push:
5+
branches:
6+
- master
7+
- main
8+
permissions:
9+
contents: write
10+
jobs:
11+
deploy:
12+
runs-on: ubuntu-latest
13+
steps:
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+
- run: echo "cache_id=$(date --utc '+%V')" >> $GITHUB_ENV
26+
27+
- uses: actions/cache@v4
28+
with:
29+
key: mkdocs-material-${{ env.cache_id }}
30+
path: .cache
31+
restore-keys: |
32+
mkdocs-material-
33+
- run: >
34+
pip install
35+
mkdocs-material
36+
mkdocs-git-revision-date-localized-plugin
37+
mkdocs-print-site-plugin
38+
- run: mkdocs gh-deploy --force

.gitignore

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
*.sublime-project
2+
*.sublime-workspace
13
.DS_Store
2-
.python-version
3-
python3.10/
4+
.vscode/
5+
site/
6+
venv/

.readthedocs.yaml

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

.vscode/launch.json

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

.vscode/settings.json

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

Makefile

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

0 commit comments

Comments
 (0)