-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
49 lines (49 loc) · 1.49 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
44
45
46
47
48
49
name: 'jFrog CLI wrapper for GH actions'
author: 'Sudhir Nakka'
description: 'Run jFrog CLI commands from actions'
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 access. When credentials type is username'
required: false
password:
description: 'Password for Artifactory access. When credentials type is username'
required: false
apikey:
description: 'API Key based Artifactory access. When redentials type is apikey'
required: false
access token:
description: 'Artifactory access token based access. When credentials type is accesstoken'
required: false
artifactFrom:
description: 'Artifact to be picked up from'
required: true
artifactTo:
description: 'Artifact to be uploaded to'
required: true
buildName:
description: 'Name of the build'
required: true
buildNumber:
description: 'Build Number to be marked'
required: true
publish:
description: 'Whether to publish build or not. true/false'
required: false
default: 'false'
working directory:
description: 'Working directory where the command needs to run'
required: false
default: .
branding:
icon: 'package'
color: 'green'
runs:
using: 'docker'
image: 'docker://sudhirnakka/jfrog-cli-alpine-lite:latest'