-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
44 lines (43 loc) · 1.33 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
name: 'Create Bintray Package'
author: https://github.com/benjefferies
description: 'A tool for creating bintray packages'
branding:
color: blue
icon: unlock
inputs:
bintray-user:
description: 'Bintray user used for authentication'
required: true
bintray-token:
description: 'Bintray access token used for authentication'
required: true
owner:
description: 'The bintray owner or organisation to create the package under'
required: true
repo:
description: 'The bintray repo to create the package will live under'
required: true
package-name:
description: 'The name of the package to create'
required: true
package-description:
description: 'The description of the package to create'
required: true
package-url:
description: 'The url of the source code'
required: true
package-license:
description: 'The license of the package to create'
required: true
runs:
using: 'docker'
image: 'Dockerfile'
env:
BINTRAY_USER: ${{ inputs.bintray-user }}
BINTRAY_TOKEN: ${{ inputs.bintray-token }}
BINTRAY_ORGANISATION: ${{ inputs.owner }}
BINTRAY_REPO: ${{ inputs.repo }}
PACKAGE_NAME: ${{ inputs.package-name }}
PACKAGE_DESCRIPTION: ${{ inputs.package-description }}
PACKAGE_URL: ${{ inputs.package-url }}
PACKAGE_LICENSE: ${{ inputs.package-license }}