GitHub Actions Dhall 项目教程

GitHub Actions Dhall 项目教程

github-actions-dhallTypecheck, template and modularize your Github Action definitions with Dhall项目地址:https://gitcode.com/gh_mirrors/gi/github-actions-dhall

1. 项目的目录结构及介绍

GitHub Actions Dhall 项目的目录结构如下:

github-actions-dhall/
├── README.md
├── dhall
│   ├── action.dhall
│   ├── defaults.dhall
│   └── inputs.dhall
├── examples
│   └── example.dhall
└── scripts
    └── generate.sh

目录介绍

  • README.md: 项目说明文档。
  • dhall/: 包含 Dhall 配置文件的目录。
    • action.dhall: 定义 GitHub Actions 的主要配置。
    • defaults.dhall: 包含默认配置选项。
    • inputs.dhall: 定义输入参数。
  • examples/: 示例配置文件目录。
    • example.dhall: 一个示例 Dhall 配置文件。
  • scripts/: 包含脚本的目录。
    • generate.sh: 用于生成配置文件的脚本。

2. 项目的启动文件介绍

项目的启动文件是 dhall/action.dhall。这个文件定义了 GitHub Actions 的主要配置,包括步骤、运行环境、输入输出等。

action.dhall 文件内容示例

let Prelude = https://prelude.dhall-lang.org/v17.0.0/package.dhall

let inputs = ./inputs.dhall

let defaults = ./defaults.dhall

let action =
  { name = "Example Action"
  , runs =
      [ { run = "echo Hello, World!"
        , env = defaults.env
        }
      ]
  , inputs = inputs
  }

in  action

3. 项目的配置文件介绍

项目的配置文件主要位于 dhall/ 目录下,包括 action.dhalldefaults.dhallinputs.dhall

defaults.dhall 文件内容示例

{ env =
    { API_KEY = "default-api-key"
    , SECRET = "default-secret"
    }
}

inputs.dhall 文件内容示例

{ api_key =
    { description = "API key for the service"
    , required = True
    }
, secret =
    { description = "Secret for the service"
    , required = False
    }
}

这些配置文件定义了 GitHub Actions 的默认环境变量和输入参数,确保了项目的灵活性和可配置性。

github-actions-dhallTypecheck, template and modularize your Github Action definitions with Dhall项目地址:https://gitcode.com/gh_mirrors/gi/github-actions-dhall

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

司莹嫣Maude

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值