likes
comments
collection
share

Cargo Actions:GitHub Actions 工作流模板管理与创建的高效工具(毕设)

作者站长头像
站长
· 阅读数 45

Cargo Actions:GitHub Actions 工作流模板管理与创建的高效工具

在软件开发中,持续集成和持续部署(CI/CD)是至关重要的环节。为了简化这一过程,我开发了 Cargo Actions,这是一个基于 Rust 语言的命令行工具,为 GitHub Actions 提供了高效的工作流模板管理和创建功能。

Cargo Actions 的主要功能包括:

  1. 用户认证登录:通过 OAuth 2.0 协议与 GitHub 进行安全集成,用户可以使用他们的 GitHub 账号登录到 Cargo Actions。
  2. 工作流初始化:支持从 GitHub 仓库或模板 ID 初始化工作流,提供了灵活的方式来集成 GitHub Actions 工作流。
  3. 模板上传与分享:用户可以将自己创建的工作流模板上传到 Cargo Actions 平台,并与其他用户分享。
  4. 个性化模板管理:允许用户管理自己上传和收藏的模板,方便快速启动熟悉或常用的工作流配置。

安装

在终端中运行以下命令:

cargo install cargo-actions

使用

初始化

使用 github 仓库 url 创建项目,可以省略github.com 前缀。 默认会使用github.com/yexiyue/car… 里的工作流模版

使用省略形式,规则(User/Repo)

cargo actions init yexiyue/cargo-actions

使用 url 形式

cargo actions init https://github.com/yexiyue/cargo-actions.git

使用 ssh 形式

cargo actions init git@github.com:yexiyue/cargo-actions.git

Cargo Actions:GitHub Actions 工作流模板管理与创建的高效工具(毕设)

同时也可以使用Cargo Actions 平台上的工作流,

Cargo Actions:GitHub Actions 工作流模板管理与创建的高效工具(毕设)

复制喜欢的工作流模版到终端

示例:

cargo actions init 1 -i

Cargo Actions:GitHub Actions 工作流模板管理与创建的高效工具(毕设)

上传模版

如果你想上传自己的工作流到 cargo actions 平台的话,请先登陆。

cargo actions login

然后准备一个工作流模版

一个标准的工作流模版应该具有下面文件

Cargo Actions:GitHub Actions 工作流模板管理与创建的高效工具(毕设)

  • cargo-action.json:配置文件,用于提示用户输入
  • 模版名.yaml.hbs:模版文件
  • README.md(可选)

cargo-action.json 配置字段说明

字段名类型描述
namestring模板名称
descriptionstring模板简短描述
pathstring模板文件路径,默认为 ${name}.yaml.hbs
promptsPrompt[]定义命令行交互输入项
success_messagestring模板创建成功后的提示信息

Prompt 配置说明

prompt 有以下 4 种类型

  1. type:"input"
字段名类型描述
fieldstring字段名称(与模版中的变量名对应)
promptstring输入提示
defaultstring默认值
  1. type:"confirm"
字段名类型描述
fieldstring字段名称(与模版中的变量名对应)
promptstring输入提示
defaultbool默认值
  1. type:"select"
字段名类型描述
fieldstring字段名称(与模版中的变量名对应)
promptstring输入提示
defaultnumber默认选项对应的索引值
options{value:any,label:string}[]选项列表,label 是提示的值,value 是最后在模版中使用的值
  1. type:"multiselect"
字段名类型描述
fieldstring字段名称(与模版中的变量名对应)
promptstring输入提示
defaultnumber[]默认选项对应的索引值数组
options{value:any,label:string}[]选项列表,label 是提示的值,value 是最后在模版中使用的值

示例:

{
  "name": "web-deploy",
  "description": "构建web 应用到Github Pages",
  "prompts": [
    {
      "type": "select",
      "field": "toolchain",
      "prompt": "请选择包管理工具",
      "default": 0,
      "options": [
        {
          "label": "npm",
          "value": "npm"
        },
        {
          "label": "yarn",
          "value": "yarn"
        },
        {
          "label": "pnpm",
          "value": "pnpm"
        }
      ]
    },
    {
      "type": "confirm",
      "field": "enable_cache",
      "prompt": "是否启用缓存",
      "default": true
    },
    {
      "type": "input",
      "field": "node_version",
      "prompt": "请输入node版本号",
      "default": "node"
    },
    {
      "type": "input",
      "field": "folder",
      "prompt": "web 项目路径",
      "default": "."
    },
    {
      "type": "input",
      "prompt": "构建产物目录(相对于web 项目路径)",
      "field": "target_dir",
      "default": "dist"
    },
    {
      "type": "confirm",
      "prompt": "是否需要复制index.html 为404.html 以支持spa",
      "field": "copy_index",
      "default": false
    }
  ]
}

模版文件是使用handlebars渲染的,模版语法可以参考Handlebars (handlebarsjs.com)

模版文件示例:

name: web on: push: branches: - "master" workflow_dispatch: jobs: deploy:
runs-on: ubuntu-latest permissions: contents: write concurrency: group:
{{#raw}}$\{{ github.workflow }}-$\{{ github.ref }}{{/raw}}
steps: - name: Checkout repository uses: actions/checkout@v4
{{#if (eq toolchain "pnpm")}}
  - name: Install pnpm run: npm install -g pnpm
{{/if}}
- name: Sync node version and setup cache uses: actions/setup-node@v4 with:
node-version: "{{node_version}}"
{{#if enable_cache}}
  {{#if (eq toolchain "pnpm")}}
    cache: "{{folder}}/pnpm-lock.yaml"
  {{/if}}
  {{#if (eq toolchain "npm")}}
    cache: "{{folder}}/package-lock.json"
  {{/if}}
  {{#if (eq toolchain "yarn")}}
    cache: "{{folder}}/yarn.lock"
  {{/if}}
{{/if}}
- name: Install dependencies run: | cd
{{folder}}
{{toolchain}}
install - name: Build run: | cd
{{folder}}
{{toolchain}}
build
{{#if copy_index}}
  cp
  {{target_dir}}/index.html
  {{target_dir}}/404.html
{{/if}}
- name: Deploy uses: peaceiris/actions-gh-pages@v4 with:
{{#raw}}github_token: $\{{ secrets.GITHUB_TOKEN }}{{/raw}}
publish_dir:
{{folder}}/{{target_dir}}

注意:

{{{{raw}}}} {{{{/raw}}}}中的表达式不会被转义。

在上传之前,可以使用check命令验证工作流模版是否正常工作。

cargo actions check

Cargo Actions:GitHub Actions 工作流模板管理与创建的高效工具(毕设)

然后使用upload命令上传工作流模版

cargo actions upload

Cargo Actions:GitHub Actions 工作流模板管理与创建的高效工具(毕设)

使用创建的模版

使用以下命令可以快速使用自己创建的工作流模版,注意需要登陆。

cargo actions mine

同时您也可以登陆 Cargo Actions 平台个人中心里查看自己创建的工作流模版。

Cargo Actions:GitHub Actions 工作流模板管理与创建的高效工具(毕设)

使用收藏的模版

cargo actions favorite

该命令使用与mine命令类似,从您在 Cargo Actions 平台收藏的模版中进行选择工作流,来初始化。

更多用法使用下面命令查看

cargo actions --help

最后

如果你对 Cargo Actions 感兴趣,欢迎访问我的GitHub仓库了解更多信息。

同时,如果你觉得这个工具对你有帮助,别忘了点赞哦!你的支持是我不断更新和改进的动力。

转载自:https://juejin.cn/post/7374751062962159653
评论
请登录