Spotify.NET/SpotifyAPI.Docs/docs.sh

18 lines
352 B
Bash
Raw Normal View History

#!/bin/bash
set -e
2020-06-04 17:18:51 +01:00
if [ -z "$APPVEYOR_PULL_REQUEST_NUMBER" ]; then
if [ "$APPVEYOR_REPO_BRANCH" = "master" ]; then
echo "Building docs..."
echo "$GH_DEPLOY_TOKEN" | base64 -d > "$HOME/.ssh/id_rsa"
chmod 700 ~/.ssh
chmod 600 ~/.ssh/id_rsa
2020-06-04 17:18:51 +01:00
cd ./SpotifyAPI.Docs
yarn
USE_SSH=true GIT_USER=JohnnyCrazy yarn deploy
fi
fi