-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
964 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
# 使用Github Actions | ||
|
||
Github Actions 是 GitHub 推出的持续集成 (Continuous integration,简称 CI) 服务 | ||
|
||
它提供了配置非常不错的虚拟服务器环境,基于它可以进行构建、测试、打包、部署项目。 | ||
|
||
简单来讲就是将软件开发中的一些流程交给云服务器自动化处理,比方说开发者把代码 push 到 GitHub 后它会自动测试、编译、发布。 | ||
|
||
## 如何使用 | ||
|
||
### 开启 | ||
|
||
在分支中点击`Settings` - `Actions`-`Allow all actions`-`Save`即可 | ||
|
||
![image-20201112110026367](assets/open_actions_permissions.png) | ||
|
||
### 查看现有Actions | ||
|
||
![image-20201112110149399](assets/see_actions.png) | ||
|
||
### 手动触发 | ||
|
||
![image-20201112110515231](assets/manually_run.png) |
Oops, something went wrong.