-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
34 lines (33 loc) · 849 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
32
33
34
name: Jar Download
description: Download a jar and all it's dependencies
author: Nathan Voxland
branding:
icon: download-cloud
color: blue
inputs:
groupId:
description: 'Group ID'
required: true
artifactId:
description: 'Artifact ID'
required: true
version:
description: 'Artifact version'
required: true
outputDirectory:
description: 'Directory to install to'
required: false
default: "."
repository:
description: 'Additional repository to download from'
required: false
default: "https://repo1.maven.org/maven2/"
runs:
using: 'docker'
image: 'Dockerfile'
args:
- --outputDirectory=${{ inputs.outputDirectory }}
- --groupId=${{ inputs.groupId }}
- --artifactId=${{ inputs.artifactId }}
- --version=${{ inputs.version }}
- --repository=${{ inputs.repository }}