Skip to content

Commit

Permalink
fix(build): attempt to fix CI builds
Browse files Browse the repository at this point in the history
  • Loading branch information
c0bra committed Sep 12, 2019
1 parent 82cb1cd commit 833ef7e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion docs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,11 @@ git commit -m 'deploy'
# git push -f [email protected]:<USERNAME>/<USERNAME>.github.io.git master

# if you are deploying to https://<USERNAME>.github.io/<REPO>
git push -f [email protected]:c0bra/svelma.git master:gh-pages
if [[ $CI ]]
then
git push -f $GITHUB_USER:$GITHUB_TOKEN@github.com:c0bra/svelma.git master:gh-pages
else
git push -f [email protected]:c0bra/svelma.git master:gh-pages
fi

cd -

0 comments on commit 833ef7e

Please sign in to comment.