mirror of
https://github.com/earthly/actions-setup.git
synced 2024-12-26 22:41:01 +08:00
23 lines
571 B
YAML
23 lines
571 B
YAML
name: Setup earthly
|
|
description: Installs the Earthly binary
|
|
branding:
|
|
icon: "sunrise"
|
|
color: "green"
|
|
author: Earthly technologies
|
|
inputs:
|
|
version:
|
|
description: "version of earthly to use."
|
|
default: "latest"
|
|
prerelease:
|
|
description: "allow prerelease versions"
|
|
default: "false"
|
|
use-cache:
|
|
description: "whether to use the cache to store earthly or not"
|
|
default: "true"
|
|
github-token:
|
|
description: "GitHub token for fetching Earthly version list."
|
|
runs:
|
|
using: node20
|
|
main: dist/setup/index.js
|
|
post: "dist/cache-save/index.js"
|