Skip to content

Commit 0181a69

Browse files
author
HongLI3
committed
OnAction
1 parent 0838eb5 commit 0181a69

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

.github/workflows/PublishMysite.yml

+7-7
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@ jobs: # 作业
1212
deploy: # 定义名为 部署 的作业,子键将定义该作业属性
1313
runs-on: ubuntu-latest # 运行于 Ubuntu
1414
steps: # 将 部署 作业中运行的所有步骤组合在一起。嵌套在此部分下的每个项目都是一个单独的操作或 shell 脚本。
15-
- run: echo "hello world"
16-
#- name: Checkout # 检出,指的是将版本控制系统中的代码或文件从代码库中复制到本地工作目录中,以便进行修改和编辑。可选。
17-
#- uses: actions/checkout@v4
18-
#- name: Install Python
19-
#uses: actions/setup-python@v5
20-
#with:
21-
# python-version: 3.x
15+
#- run: echo "hello world"
16+
- name: Checkout # 检出,指的是将版本控制系统中的代码或文件从代码库中复制到本地工作目录中,以便进行修改和编辑。可选。
17+
uses: actions/checkout@v4
18+
- name: Install Python
19+
uses: actions/setup-python@v5
20+
with:
21+
python-version: 3.x
2222
#run: pip install mkdocs-material # 关键字 run 指示作业在运行器shell上执行命令
2323
#run: mkdocs gh-deploy --force

0 commit comments

Comments
 (0)