Browse Source

added new version to docs (#4097)

pull/4102/head
Mircea Colonescu 5 years ago
committed by Marko
parent
commit
b2475227a5
2 changed files with 5 additions and 3 deletions
  1. +4
    -3
      Makefile
  2. +1
    -0
      docs/versions

+ 4
- 3
Makefile View File

@ -159,9 +159,10 @@ DESTINATION = ./index.html.md
build-docs:
@cd docs && \
while read p; do \
(git checkout $${p} && npm install && VUEPRESS_BASE="/docs/$${p}/" npm run build) ; \
mkdir -p ~/output/docs/$${p} ; \
cp -r .vuepress/dist/* ~/output/docs/$${p}/ ; \
(git checkout $${p} && npm install && VUEPRESS_BASE="/$${p}/" npm run build) ; \
mkdir -p ~/output/$${p} ; \
cp -r .vuepress/dist/* ~/output/$${p}/ ; \
echo "<a href='$${p}'>$${p}</a>" >> ~/output/index.html ; \
done < versions ;
sync-docs:


+ 1
- 0
docs/versions View File

@ -1 +1,2 @@
master
tags/v0.32.7

Loading…
Cancel
Save