https://github.com/benjefferies/create-bintray-package
A Github action to create a Bintray package
https://github.com/benjefferies/create-bintray-package
Last synced: 3 months ago
JSON representation
A Github action to create a Bintray package
- Host: GitHub
- URL: https://github.com/benjefferies/create-bintray-package
- Owner: benjefferies
- Created: 2019-11-20T15:08:53.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-12-10T12:03:58.000Z (over 6 years ago)
- Last Synced: 2024-05-02T06:07:20.450Z (about 2 years ago)
- Language: Shell
- Size: 12.7 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Create Bintray Package
A Github action to create a Bintray package.
Example of usage can be found https://github.com/benjefferies/maven-bintray-github-actions
## 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
```