Skip to content

Commit 61767d2

Browse files
authored
fix/add all files when generating docs (#92)
1 parent e34dc3f commit 61767d2

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

.github/workflows/dev-docs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,5 +23,6 @@ jobs:
2323
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/automata-tech/eva_python_sdk
2424
git config --global user.email "[email protected]"
2525
git config --global user.name "docs-bot"
26-
git commit -am 'docs'
26+
git add .
27+
git commit -m 'docs'
2728
git push origin docs/development -f

.github/workflows/docs.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,6 @@ jobs:
2626
git remote set-url origin https://x-access-token:${{ secrets.GITHUB_TOKEN }}@github.com/automata-tech/eva_python_sdk
2727
git config --global user.email "[email protected]"
2828
git config --global user.name "docs-bot"
29-
git commit -am 'docs'
29+
git add .
30+
git commit -m 'docs'
3031
git push origin docs/${{ steps.get-git-tag.outputs.git-tag }} -f

0 commit comments

Comments
 (0)