Compare commits
18
Commits
2.0.2
...
release/2.0.2
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
37ff5abb28 | ||
|
|
4b4bcd2829 | ||
|
|
adc8cb3f66 | ||
|
|
81c3e3f219 | ||
|
|
587359d40e | ||
|
|
cedef6589f | ||
|
|
9a1f0c65ce | ||
|
|
031eeae706 | ||
|
|
32366a06f5 | ||
|
|
4873fc5084 | ||
|
|
fda50fb383 | ||
|
|
65da4cdc53 | ||
|
|
7b8e92b402 | ||
|
|
c5d736eafd | ||
|
|
85e5e72363 | ||
|
|
216bbb449f | ||
|
|
1378e808f8 | ||
|
|
8a23c83c83 |
@@ -0,0 +1,81 @@
|
||||
version: '1.0'
|
||||
name: pipeline-docs-build
|
||||
displayName: 官网静态资源构建
|
||||
triggers:
|
||||
trigger: auto
|
||||
push:
|
||||
branches:
|
||||
precise:
|
||||
- master
|
||||
paths:
|
||||
include:
|
||||
- neutrino-proxy-vuepress.*
|
||||
variables:
|
||||
global:
|
||||
- git_token
|
||||
- username
|
||||
commit_name: aoshiguchen
|
||||
commit_email: [email protected]
|
||||
repo_url: https://gitee.com/dromara/neutrino-proxy.git
|
||||
target_branch: site
|
||||
stages:
|
||||
- name: stage-build
|
||||
displayName: 构建
|
||||
strategy: naturally
|
||||
trigger: auto
|
||||
executor:
|
||||
- asgc
|
||||
steps:
|
||||
- step: build@nodejs
|
||||
name: build_nodejs
|
||||
displayName: Nodejs 构建
|
||||
nodeVersion: 14.16.0
|
||||
commands:
|
||||
- '# 切换到工作目录'
|
||||
- ''
|
||||
- cd ./neutrino-proxy-vuepress
|
||||
- '# 设置NPM源,提升安装速度'
|
||||
- npm config set registry https://registry.npmmirror.com
|
||||
- ''
|
||||
- '# 执行编译命令'
|
||||
- npm install && npm run build
|
||||
- ''
|
||||
- '# 资源复制,使得官网访问支持直接域名访问 + 域名后面带路径 2种访问方式'
|
||||
- cp ./CNAME docs/.vuepress/dist/
|
||||
- rm -rf docs/.vuepress/dist/neutrino-proxy
|
||||
- rm -rf docs/.vuepress/distTemp
|
||||
- cp -rf docs/.vuepress/dist/ docs/.vuepress/distTemp
|
||||
- cp -rf docs/.vuepress/distTemp docs/.vuepress/dist/neutrino-proxy
|
||||
- rm -rf docs/.vuepress/distTemp
|
||||
- ''
|
||||
- '# 初始化git仓库'
|
||||
- cd docs/.vuepress/dist
|
||||
- git init
|
||||
- ''
|
||||
- '# 设置Git信息'
|
||||
- GIT_REPO_URL=https://gitee.com/dromara/neutrino-proxy.git
|
||||
- GIT_USERNAME=$username
|
||||
- GIT_NAME=$commit_name
|
||||
- GIT_EMAIL=$commit_email
|
||||
- GIT_TOKEN=$git_token
|
||||
- echo "https://${GIT_USERNAME}:${GIT_TOKEN}@${GIT_REPO_URL#https://}" > ~/.git-credentials
|
||||
- git config --global credential.helper store
|
||||
- git remote add origin ${GIT_REPO_URL}
|
||||
- git config user.name ${GIT_NAME}
|
||||
- git config user.email ${GIT_EMAIL}
|
||||
- ''
|
||||
- '# 将构建产物推送到目标分支'
|
||||
- git add -A
|
||||
- git commit -m $GITEE_COMMIT_MESSAGE
|
||||
- git checkout -b $target_branch
|
||||
- git push -f origin $target_branch
|
||||
artifacts:
|
||||
- name: BUILD_ARTIFACT
|
||||
path:
|
||||
- ./neutrino-proxy-vuepress/docs/.vuepress/dist
|
||||
caches:
|
||||
- ~/.npm
|
||||
- ~/.yarn
|
||||
notify: []
|
||||
strategy:
|
||||
retry: '0'
|
||||
@@ -8,3 +8,5 @@
|
||||
[主题仓库](https://github.com/xugaoyi/vuepress-theme-vdoing)
|
||||
|
||||
[本仓库的gitee镜像](https://gitee.com/xugaoyi/vuepress-theme-vdoing-doc)
|
||||
|
||||
hello
|
||||
|
||||
Reference in New Issue
Block a user