We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4aea44f commit 2b46dfdCopy full SHA for 2b46dfd
1 file changed
scripts/travisPublishDocs.sh
@@ -9,6 +9,9 @@ mkdir ../gh-pages
9
cp -r doc/_build/html/* ../gh-pages/
10
cd ../gh-pages
11
12
+# because of directories starting with underscore
13
+touch .nojekyll
14
+
15
# Add branch
16
git init
17
git remote add origin https://${GH_TOKEN}@github.com/hyperwallet/python-sdk.git > /dev/null
@@ -17,4 +20,4 @@ git checkout -B gh-pages
20
# Push generated files
18
21
git add .
19
22
git commit -m "Documentation updated"
-git push origin gh-pages -fq > /dev/null
23
+git push origin gh-pages -fq > /dev/null
0 commit comments