Browse Source

added staging build step to docs deployment (#4129)

pull/4132/head
Mircea Colonescu 5 years ago
committed by Marko
parent
commit
0c6ad4f714
2 changed files with 7 additions and 0 deletions
  1. +6
    -0
      .circleci/config.yml
  2. +1
    -0
      Makefile

+ 6
- 0
.circleci/config.yml View File

@ -381,6 +381,12 @@ workflows:
tags:
only:
- /^v.*/
- deploy_docs:
context: tendermint-docs-staging
filters:
branches:
only:
- docs-theme-latest
- setup_dependencies
- test_abci_apps:
requires:


+ 1
- 0
Makefile View File

@ -162,6 +162,7 @@ build-docs:
(git checkout $${p} && npm install && VUEPRESS_BASE="/$${p}/" npm run build) ; \
mkdir -p ~/output/$${p} ; \
cp -r .vuepress/dist/* ~/output/$${p}/ ; \
cp ~/output/$${p}/index.html ~/output ; \
done < versions ;
sync-docs:


Loading…
Cancel
Save