[docfmt] Make stale overrides rarer

This commit is contained in:
JAremko 2019-12-04 17:26:42 +02:00 committed by Eugene Yaremenko
parent 88b4df9d8a
commit d0f860f7c7
1 changed files with 11 additions and 9 deletions

View File

@ -17,13 +17,7 @@ env:
before_script:
- docker pull jare/spacetools:latest
script:
- |
cd /
rm -rf "${TRAVIS_BUILD_DIR}"
git clone "https://github.com/${SPACEMACS_REPO_SLUG}" \
-b "${TRAVIS_BRANCH}" \
"${TRAVIS_BUILD_DIR}"
cd "${TRAVIS_BUILD_DIR}"
- git checkout "${TRAVIS_BRANCH}"
before_deploy:
- >
if ! [ "$BEFORE_DEPLOY_RUN" ]; then
@ -36,10 +30,18 @@ deploy:
script: ".travisci/pub_org.sh"
on:
branch: develop
condition: $TRAVIS_REPO_SLUG = $SPACEMACS_REPO_SLUG
# Deploy only if we are in the official repo and
# the local revision matches origin's head
condition: $TRAVIS_REPO_SLUG = $SPACEMACS_REPO_SLUG && \
$(git remote update) && \
$(git rev-parse '@') = $(git rev-parse '@{u}')
- provider: script
skip_cleanup: true
script: ".travisci/pub_html.sh"
on:
all_branches: true
condition: $TRAVIS_REPO_SLUG = $SPACEMACS_REPO_SLUG
# Deploy only if we are in the official repo and
# the local revision matches origin's head
condition: $TRAVIS_REPO_SLUG = $SPACEMACS_REPO_SLUG && \
$(git remote update) && \
$(git rev-parse '@') = $(git rev-parse '@{u}')