1 Star 1 Fork 2

DevOps在路上 / devops-docs

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
_gitlab-ci.yml 582 Bytes
一键复制 编辑 原始数据 按行查看 历史
owen2016 提交于 2020-12-09 00:09 . update k8s
image: node:10.15.3
pages:
script:
# https://unix.stackexchange.com/questions/83593/copy-specific-file-type-keeping-the-folder-structure
# https://stackoverflow.com/questions/4210042/how-to-exclude-a-directory-in-find-command
- >-
find .
-type d \( -path ./.vuepress/public -o -path ./public -o -path ./node_modules \) -prune -o
\( -name '*.sh' -o -name '*.pptx' -o -name '*.docx' -o -name '*.xlsx' \)
-exec cp --parents \{\} ./.vuepress/public \;
- yarn install
- yarn build
artifacts:
paths:
- public
only:
- master
1
https://gitee.com/owen2016/devops-docs.git
git@gitee.com:owen2016/devops-docs.git
owen2016
devops-docs
devops-docs
master

搜索帮助