We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8f042b commit f04ede5Copy full SHA for f04ede5
.github/workflows/website.yml
@@ -72,12 +72,12 @@ jobs:
72
# 文档的克隆、构建、部署。注意 `clone --depth 1` 只拉最近一次提交,减少时间
73
# git clone --depth 1 https://github.com/${GITHUB_REPOSITORY}.git # 如果有多个clone项则替换成这个,避免冲突
74
mkdir -p ./.vuepress/public/docs/
75
- git clone --depth 1 -b tmp https://github.com/${GITHUB_REPOSITORY}.git ./.vuepress/public/docs/ # [!code] 注意分支
+ git clone --depth 1 -b tmp https://github.com/${GITHUB_REPOSITORY}.git .vuepress/public/docs/ # [!code] 注意分支
76
pwd
77
echo "----- ls1 -----"
78
- ls
+ ls -a
79
echo "----- ls2 -----"
80
- ls ./.vuepress/public/docs/
+ ls -a ./.vuepress/public/docs/
81
82
# [!code] 根据实际情况修改 (需要在仓库配置写入以及和文档仓库clone这两个步骤的后面)
83
- name: 配置 - 设置
0 commit comments