We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4bb22f3 commit 15d9aafCopy full SHA for 15d9aaf
1 file changed
.github/workflows/build_guide.yml
@@ -35,11 +35,12 @@ jobs:
35
jupyter-book build .
36
- name: add and commit userguide to gh-page
37
run: |
38
+ mv _build/html /tmp/site
39
git config --global user.name 'Adexandria'
40
git config --global user.email 'adeolaaderibigbe09@gmail.com'
41
git checkout --orphan docs-deploy
42
git rm -rf .
- cp -r _build/html/* .
43
+ mv /tmp/site/* .
44
git add .
45
git commit -m "Add user guide"
46
git config pull.rebase false
0 commit comments