Skip to content

Commit 7f80206

Browse files
committed
updating workflows
1 parent ca818b1 commit 7f80206

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

.github/workflows/pythonpublish.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,9 @@ jobs:
5151
- name: Generate changelog
5252
run: python3 scripts/changelog.py
5353

54+
- name: Create Examples documentation
55+
run: python3 scripts/update_docs.py
56+
5457
- name: Build MkDocs site
5558
run: mkdocs build
5659

makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,16 +36,19 @@ bump: ## Bump the version of the project
3636
cleanup: isort ruff autoflake ## Run isort, ruff, autoflake
3737

3838
create-docs: ## Build and deploy the project's documentation
39+
3940
python3 scripts/changelog.py
41+
python3 scripts/update_docs.py
4042
cp /workspaces/$(REPONAME)/README.md /workspaces/$(REPONAME)/docs/index.md
4143
cp /workspaces/$(REPONAME)/CONTRIBUTING.md /workspaces/$(REPONAME)/docs/contribute.md
4244
cp /workspaces/$(REPONAME)/CHANGELOG.md /workspaces/$(REPONAME)/docs/release-notes.md
4345
mkdocs build
4446
mkdocs gh-deploy
4547

4648
create-docs-local: ## Build and deploy the project's documentation
47-
python3 scripts/update_docs.py
49+
4850
python3 scripts/changelog.py
51+
python3 scripts/update_docs.py
4952
cp /workspaces/$(REPONAME)/README.md /workspaces/$(REPONAME)/docs/index.md
5053
cp /workspaces/$(REPONAME)/CONTRIBUTING.md /workspaces/$(REPONAME)/docs/contribute.md
5154
cp /workspaces/$(REPONAME)/CHANGELOG.md /workspaces/$(REPONAME)/docs/release-notes.md

0 commit comments

Comments
 (0)