forked from advancedcsg-open/action-jfrog-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
33 lines (33 loc) · 1.1 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
name: 'jFrog CLI for Artifactory'
author: 'Advanced Toolchain'
description: 'Run jFrog CLI commands for Artifactory'
inputs:
url:
description: 'URL of Artifactory instance'
required: true
credentials type:
description: 'Type of authentication to use. Must be one of username, apikey or accesstoken. Defaults to apikey'
required: true
default: apikey
user:
description: 'Username for Artifactory. Must be supplied when credentials type is username'
required: false
password:
description: 'Password for Artifactory. Must be supplied when credentials type is username'
required: false
apikey:
description: 'Artifactory API Key. Must be supplied when credentials type is apikey'
required: false
access token:
description: 'Artifactory access token. Must be supplied when credentials type is accesstoken'
required: false
working directory:
description: 'Specify a working directory for the command to run in.'
required: false
default: .
branding:
icon: 'package'
color: 'green'
runs:
using: 'docker'
image: 'docker://advancedcsg/action-jfrog-cli:1'