Initial OpenECOMP Portal commit
[portal.git] / ecomp-portal-FE / client / bower_components / ui-select / deploy-docs.sh
diff --git a/ecomp-portal-FE/client/bower_components/ui-select/deploy-docs.sh b/ecomp-portal-FE/client/bower_components/ui-select/deploy-docs.sh
new file mode 100644 (file)
index 0000000..f18e63a
--- /dev/null
@@ -0,0 +1,31 @@
+#!/bin/bash
+set -e 
+
+[[ $TRAVIS_SECURE_ENV_VARS == "true" ]] || { echo "No github key avaliable, aborting publishing"; exit 0; }
+
+ID_REF="$(git rev-parse --short HEAD)"
+
+git clone "https://${GH_KEY}@${GH_REF}" ./docs-out -b ${GH_PAGES_BRANCH} --single-branch --depth=1
+
+cd docs-out
+
+# clear out everything
+git rm -rf .
+git clean -fxd
+
+# get new content
+cp ../docs-built/* . -R
+
+git add .
+
+# inside this git repo we'll pretend to be a new user
+git config user.name "Travis CI"
+git config user.email "travisci@users.noreply.github.com"
+
+# The first and only commit to this new Git repo contains all the
+# files present with the commit message "Deploy to GitHub Pages".
+git commit -m "docs(*): new deploy (angular-ui/ui-select@${ID_REF})"
+
+
+git push origin --quiet 
+#> /dev/null 2>&1
\ No newline at end of file