-
Notifications
You must be signed in to change notification settings - Fork 43
/
action.yml
31 lines (30 loc) · 992 Bytes
/
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
name: 'Capistrano deploy'
description: 'Deploy an application using capistrano to the given target'
branding:
icon: 'arrow-right-circle'
color: 'black'
inputs:
capistrano_commands:
description: 'The Capistrano commands to run'
required: true
default: '["deploy"]'
target: # string
description: 'Environment where deploy is to be performed to'
required: false # if no param is given, default cap target will be selected
deploy_key:
description: 'Deployment key used for decryption of SSH RSA private key'
required: true
enc_rsa_key_pth:
description: 'Path to SSH private key encrypted with deploy_key'
required: false
default: 'config/deploy_id_rsa_enc'
enc_rsa_key_val:
description: 'Value of the SSH private key encrypted with deploy_key'
required: false
working-directory:
description: 'The directory from which to run the deploy command'
required: false
default: ''
runs:
using: 'node20'
main: 'lib/run.js'