-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
43 lines (39 loc) · 1.14 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
name: 'Nitric CLI - Automated Cloud Deployment'
description:
'Build with Nitric and use this Action to automatically deploy your
application with the right infrastructure to your cloud.'
author: 'Nitric'
# Add your action's branding here. This will appear on the GitHub Marketplace.
branding:
icon: 'upload-cloud'
color: 'blue'
# Define your inputs here.
inputs:
version:
description:
'Version of the Nitric CLI to install, or "latest" (default). This accepts
semver ranges like 1.33.0.'
required: true
default: 'latest'
github-token:
description: 'Token used to query nitric versions'
required: true
default: ${{ github.token }}
command:
description: 'Nitric command to run, eg. up or down'
required: false
working-directory:
description: 'Working directory containing Nitric stack'
required: false
stack-name:
description: 'Which stack you want to deploy, eg. dev'
required: false
# Define your outputs here.
outputs:
version:
description: 'Version of installed Nitric CLI'
output:
description: 'Output from running command'
runs:
using: node20
main: dist/index.js