File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change 51
51
- name : Generate changelog
52
52
run : python3 scripts/changelog.py
53
53
54
+ - name : Create Examples documentation
55
+ run : python3 scripts/update_docs.py
56
+
54
57
- name : Build MkDocs site
55
58
run : mkdocs build
56
59
Original file line number Diff line number Diff line change @@ -36,16 +36,19 @@ bump: ## Bump the version of the project
36
36
cleanup : isort ruff autoflake # # Run isort, ruff, autoflake
37
37
38
38
create-docs : # # Build and deploy the project's documentation
39
+
39
40
python3 scripts/changelog.py
41
+ python3 scripts/update_docs.py
40
42
cp /workspaces/$(REPONAME)/README.md /workspaces/$(REPONAME)/docs/index.md
41
43
cp /workspaces/$(REPONAME)/CONTRIBUTING.md /workspaces/$(REPONAME)/docs/contribute.md
42
44
cp /workspaces/$(REPONAME)/CHANGELOG.md /workspaces/$(REPONAME)/docs/release-notes.md
43
45
mkdocs build
44
46
mkdocs gh-deploy
45
47
46
48
create-docs-local : # # Build and deploy the project's documentation
47
- python3 scripts/update_docs.py
49
+
48
50
python3 scripts/changelog.py
51
+ python3 scripts/update_docs.py
49
52
cp /workspaces/$(REPONAME)/README.md /workspaces/$(REPONAME)/docs/index.md
50
53
cp /workspaces/$(REPONAME)/CONTRIBUTING.md /workspaces/$(REPONAME)/docs/contribute.md
51
54
cp /workspaces/$(REPONAME)/CHANGELOG.md /workspaces/$(REPONAME)/docs/release-notes.md
You can’t perform that action at this time.
0 commit comments