-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -60,7 +60,7 @@ jobs: | |
fi; | ||
if [ "$CIRCLE_BRANCH" == "master" ] || [[ $(cat gitlog.txt) == *"[circle full]"* ]]; then | ||
echo html_dev > build.txt; | ||
elif [ "$CIRCLE_BRANCH" == "maint/0.15" ]; then | ||
elif [ "$CIRCLE_BRANCH" == "maint/0.16" ]; then | ||
echo html_stable > build.txt; | ||
else | ||
FNAMES=$(git diff --name-only $CIRCLE_BRANCH $(git merge-base $CIRCLE_BRANCH upstream/master)); | ||
|
@@ -195,7 +195,7 @@ jobs: | |
pushd ~/mne-tools.github.io && git checkout master && git pull origin master && popd; | ||
pushd doc/_build && rm -Rf ~/mne-tools.github.io/dev && cp -a html ~/mne-tools.github.io/dev && popd; | ||
pushd ~/mne-tools.github.io && git add -A && git commit -m "CircleCI update of dev docs (${CIRCLE_BUILD_NUM})." && git push origin master && popd; | ||
elif [ "${CIRCLE_BRANCH}" == "maint/0.15" ]; then | ||
elif [ "${CIRCLE_BRANCH}" == "maint/0.16" ]; then | ||
echo "Deploying stable docs."; | ||
git config --global user.email "[email protected]"; | ||
git config --global user.name "Circle Ci"; | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters