mirror of
https://github.com/Redocly/redoc.git
synced 2024-11-11 03:16:48 +03:00
15 lines
333 B
Bash
Executable File
15 lines
333 B
Bash
Executable File
#!/bin/bash
|
|
set -o pipefail
|
|
(
|
|
set -e
|
|
set -x
|
|
cd demo
|
|
git init
|
|
git config user.name "Travis-CI"
|
|
git config user.email "travis@travis"
|
|
cp -r ../dist ./dist
|
|
git add .
|
|
git commit -m "Deployed to Github Pages"
|
|
git push --force "https://${GH_TOKEN}@${GH_REF}" master:gh-pages 2>&1
|
|
) 2>&1 | sed "s/${GH_TOKEN}/xxPASSxx/"
|