Supper Thomas

Results 1023 comments of Supper Thomas

创建 Docker 容器操作 https://docs.github.com/cn/actions/creating-actions/creating-a-docker-container-action

![图片](https://user-images.githubusercontent.com/60349489/144238008-3ae65518-90bb-4653-a16e-76adcbb1b47e.png)

ubuntu 原装软件 https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-README.md

GitHub Actions 有一些自己的术语。 workflow (工作流程):持续集成一次运行的过程,就是一个 workflow。 job (任务):一个 workflow 由一个或多个 jobs 构成,含义是一次持续集成的运行,可以完成多个任务。 step(步骤):每个 job 由多个 step 构成,一步步完成。 action (动作):每个 step 可以依次执行一个或多个命令(action)。

https://docs.github.com/cn/actions/learn-github-actions/understanding-github-actions ![图片](https://user-images.githubusercontent.com/60349489/144254411-7166c4e2-0485-4165-8a24-e4b7289b607e.png)

![图片](https://user-images.githubusercontent.com/60349489/144256160-2abfa1fe-1eca-4609-9dfe-10f4cefeacfa.png)

yml 语法 https://docs.github.com/cn/actions/learn-github-actions/understanding-github-actions

![图片](https://user-images.githubusercontent.com/60349489/144260216-c45fa587-9ece-4f75-bbc5-1052fc6d6d72.png)

要看懂action.yml 看下面这个连接比较管用 https://docs.github.com/cn/actions/learn-github-actions/workflow-syntax-for-github-actions#example

![图片](https://user-images.githubusercontent.com/60349489/144261249-8f6ebf93-e50f-4efe-9bd0-b7210f3c1bc9.png)