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

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 

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

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