Nom des exécutions de workflow généré à partir du workflow. GitHub affiche le nom de l’exécution de workflow dans la liste des exécutions de workflow sous l’onglet « Actions » de votre dépôt. Sirun-nameest omis ou s’il est juste un espace blanc...
The name of the workflow. GitHub displays the names of your workflows under your repository's "Actions" tab. If you omitname, GitHub displays the workflow file path relative to the root of the repository. run-name The name for workflow runs generated from the workflow. GitHub displays the w...
For more information about workflow syntax and expressions, check out Workflow syntax for GitHub Actions. Disable and delete workflows After adding a workflow to your repository, you might find a situation where you want to temporarily disable the workflow. You can stop a workflow from bein...
For more information about workflow syntax and expressions, check out Workflow syntax for GitHub Actions. Disable and delete workflows After adding a workflow to your repository, you might find a situation where you want to temporarily disable the workflow. You can stop a workflow from be...
workflow: CI/CD 的工作流 job: 任务,比如构建,测试和部署。每个workflow由多个job组成 step: 每个job由多个step组成 配置 参考官方文档: Workflow syntax for GitHub Actions[1] 以下是常用到的配置 on 该CI/CD 触发时的事件。如果需要上传代码自动部署的功能时,应该选择on: push ...
GitHub Actions 配置文件放在仓库的.github/workflows目录下面,以 yaml 文件的形式存在,文件名根据自己的需求命名,比如main.yml或者develop.yml 其中文件的配置项可参考https://docs.github.com/en/actions/reference/workflow-syntax-for-github-actions官方文档来进行编写,下面介绍一些常见的选项 ...
workflow文件的配置可参考https://help./en/articles/workflow-syntax-for-github-actions 配置字段说明 name name字段是 workflow 的名称。如果省略该字段,默认为当前 workflow 的文件名。 name:My GitHub Actions 1. on on字段指定触发 workflow 的条件,通常是某些事件。上面代码指定,push事件触发 workflow。
If you want a lighter, simpler workflow that doesn't rely on Github Actions, considerDenoflow, another workflow tool made by me, based on Deno with YAML , you can try it at anonline playground Totally Free!Actionsflow is based onGithub actions. To run an Actionsflow workflow, all you need...
NPM_TOKEN - 用于发布 NPM 包 CODECOV_TOKEN - 用于上报代码覆盖率 仅添加使用到的即可,本示例中 NPM_TOKEN、 GITHUB_TOKEN 为必需。 效果预览 workflows 概览 Job 状态概览(steps) Job 状态详情(steps) 参考链接 About Github Actions Workflow syntax for GitHub Actions...
GitHub Actions 的配置文件叫做 workflow 文件,存放在代码仓库的.github/workflows目录。 workflow 文件采用YAML格式,文件名可以任意取,但是后缀名统一为.yml,默认为main.yml。一个库可以有多个 workflow 文件。GitHub 只要发现.github/workflows目录里面有.yml文件,就会自动运行该文件。 1.name workflow的名称。如果省略...