Skip to content

Commit

Permalink
Create blank.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
shaqike authored Apr 16, 2024
1 parent 63646f0 commit bb9a58c
Showing 1 changed file with 36 additions and 0 deletions.
36 changes: 36 additions & 0 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# 这是帮助您开始使用 Actions 的基本工作流程

名称:CI

# 运行时控制工作流
在:
# 在主动或拉取请求事件上触发工作流程,但仅限于“master”分支
推:
分支:[ “主” ]
拉请求:
分支:[ “主” ]

# 允许您从“操作”选项卡手动运行此工作流程
工作流程_调度:

# 工作流程运行由一个或可以是顺序或任务运行的作业多个组成
工作:
# 该工作流程包含一个名为“build”的作业
建造者:
# 作业将运行的运行器类型
运行:ubuntu-latest

#步骤表示将作为作业的一部分执行的一系列任务
脚步:
# 在$GITHUB_WORKSPACE下签出您的存储库,方便您的作业可以访问它
-使用:actions/checkout@v3

# 使用 runner shell 运行单个命令
-名称:运行脚本
运行: echo 你好,世界!

# 使用 runner shell 运行一组命令
-姓名:运行多行脚本
运行:|
echo 添加其他要构建的操作,
echo 测试,并部署您的项目。

0 comments on commit bb9a58c

Please sign in to comment.