engineerd/engineerd/configurator
Easy and cross-platform action to download, extract, and add to path statically compiled tools.
View on GitHubTrust Signals
- Scorecard Score
- not yet scored
- Maintenance Recency
- Stale
- License
- None
Inputs
| name | description | required | default |
|---|---|---|---|
| name | Name your tool will be configured with | yes | — |
| url | URL to download your tool from | no | — |
| pathInArchive | If the URL points to an archive, this field is required, and points to the path of the tool to configure (relative to the archive root). | no | — |
| fromGitHubReleases | If true, the action will attempt to get the latest version from the specified repo's GitHub Releases that matches the given semver version or range provided, and then download it using the provided urlTemplate. | no | false |
| repo | GitHub repository of the tool. Used to list all releases and select the proper version. Required if `fromGitHubReleases` is true. | no | — |
| version | An exact semver version or version range (specified with ^ or ~). If `latest` is provided, the action will download the latest release (respecting the `includePrereleases flag`), which, can break your action. Required if `fromGitHubReleases` is true. | no | — |
| token | GitHub token used to list the GitHub releases for the supplied repository. Required if `fromGitHubReleases` is true. | no | — |
| urlTemplate | A URL template used to construct the download URL, together with the desired version acquired from a GitHub release. For example, `https://get.helm.sh/helm-{{version}}-linux-amd64.tar.gz` (the version inserted here is the exact tag name from GitHub - check whether the tag name contains any `v` before the version when constructing the URL template) .Required if `fromGitHubReleases` is true. | no | — |
| includePrereleases | If true, the action will include prereleases when selecting a version from GitHub Releases. | no | false |
Outputs
no outputs