We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 751ffb0 commit f552769Copy full SHA for f552769
.github/workflows/deploy_documentation.sh
@@ -9,6 +9,7 @@
9
10
# prepare
11
mv doc/ doctmp/ && mv README.md README.md.tmp && mv mkdocs.yml mkdocs.yml.tmp
12
+rm -rf dependencies
13
git checkout origin/doc
14
if [ $? -ne 0 ]; then echo "GIT checkout failure"; exit 1; fi
15
git checkout -b doc
@@ -40,6 +41,7 @@ git config user.name "Github Action"
40
41
git commit -m "Updated documentation" --no-edit
42
43
if [ "$1" = true ]; then
44
+ echo "Deploy documentation"
45
git remote set-url origin https://x-access-token:${GITHUB_TOKEN}@github.com/carla-simulator/map
46
git push origin doc
47
else
0 commit comments