We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 16fc6fb commit 4d8f2f8Copy full SHA for 4d8f2f8
.github/workflows/publish_docs_to_pages.yml
@@ -30,7 +30,7 @@ jobs:
30
make html
31
mv build/html /tmp
32
cd ..
33
- - name: Push the new documentation to gh-pages
+ - name: Prepare local gh-pages branch
34
env:
35
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
36
run: |
@@ -53,5 +53,9 @@ jobs:
53
echo "Adding new documentation"
54
git add -A
55
git commit -m "Add new documentation"
56
+ - name: Push the new documentation to gh-pages
57
+ env:
58
+ GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
59
+ run: |
60
echo "Pushing new documentation to origin"
61
git push -v "https://${GITHUB_TOKEN}:[email protected]/numpy/numpy-financial.git" gh-pages
0 commit comments