Update docs in real time
This commit is contained in:
parent
7788a140f2
commit
323a888160
1 changed files with 26 additions and 18 deletions
42
.travis.yml
42
.travis.yml
|
@ -1,32 +1,40 @@
|
|||
os: linux
|
||||
dist: bionic
|
||||
|
||||
language: minimal
|
||||
|
||||
# only run on tags
|
||||
if: branch =~ /^v(\d)+(\.(\d)+){2}$/ OR tag IS present
|
||||
|
||||
jobs:
|
||||
include:
|
||||
- name: Deploy
|
||||
language: ruby
|
||||
rvm: 2.7.0
|
||||
|
||||
before_script: git -C "$HOME" clone "$BUILDER_REPO" --depth=1 -q
|
||||
|
||||
addons:
|
||||
apt:
|
||||
packages:
|
||||
- libcurl4-openssl-dev # to avoid SSL error (for htmlproofer)
|
||||
install:
|
||||
- bundle install --jobs=3 --retry=3 # overriding to drop the travis `--development` flag
|
||||
script:
|
||||
- eval "$BUILD_CMD"
|
||||
|
||||
# Overriding to drop the `--development` flag which requires the Gemfile.lock at build
|
||||
install: bundle install --jobs=3 --retry=3 --path=vendor/bundle
|
||||
|
||||
jobs:
|
||||
include:
|
||||
- stage: Deploy
|
||||
git:
|
||||
depth: false # for posts' lastmod
|
||||
|
||||
- name: Flush Starter
|
||||
script: eval "$BUILD_CMD"
|
||||
- stage: Flush Starter
|
||||
install: true # skip install step
|
||||
script: eval "$FLUSH_STARTER"
|
||||
- stage: Update Docs
|
||||
cache: bundler
|
||||
git:
|
||||
depth: false # for posts' lastmod
|
||||
script: eval "$DOCS_CMD"
|
||||
|
||||
before_script:
|
||||
- git -C "$HOME" clone "$BUILDER_REPO" --depth=1 -q
|
||||
stages:
|
||||
- name: Deploy
|
||||
if: branch =~ /^v(\d)+(\.(\d)+){2}$/ OR tag IS present
|
||||
- name: Flush Starter
|
||||
if: branch =~ /^v(\d)+(\.(\d)+){2}$/ OR tag IS present
|
||||
- name: Update Docs
|
||||
if: branch = docs
|
||||
|
||||
notifications:
|
||||
email:
|
||||
|
|
Loading…
Reference in a new issue