-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
action.yml
30 lines (29 loc) · 1.16 KB
/
action.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
name: "setup-atmos"
description: "A GitHub Action to setup the Atmos CLI"
author: [email protected]
branding:
icon: "terminal"
color: "blue"
inputs:
atmos-version:
description: "Version Spec of the version to use. Examples: 1.x, 10.15.1, >=10.15.0."
default: "latest"
install-wrapper:
description:
Flag to indicate if the wrapper script will be installed to wrap subsequent calls of the `atmos` binary and expose
its STDOUT, STDERR, and exit code as outputs named `stdout`, `stderr`, and `exitcode` respectively. Defaults to
`true`.
default: "true"
required: false
token:
description:
Used to pull atmos distributions from Cloud Posse's GitHub repository. Since there's a default, this is typically
not supplied by the user. When running this action on github.com, the default value is sufficient. When running on
GHES, you can pass a personal access token for github.com if you are experiencing rate limiting.
default: ${{ github.server_url == 'https://github.com' && github.token || '' }}
outputs:
atmos-version:
description: "The installed atmos version."
runs:
using: "node20"
main: "dist/index.js"