action-gh-release/action.yml
2019-09-09 20:17:51 +09:00

30 lines
No EOL
881 B
YAML

# https://help.github.com/en/articles/metadata-syntax-for-github-actions
name: 'GH Release'
description: 'Github Action for creating Github Releases'
author: 'softprops'
inputs:
body:
description: 'Note-worthy description of changes in release'
required: false
body-path:
description: 'Path to load note-worthy description of changes in release from'
required: false
name:
description: 'Gives the release a custom name. Defaults to tag name'
required: false
draft:
description: 'Creates a draft release'
required: false
files:
description: 'Comma-delimited list of path globs for asset files to upload'
required: false
env:
'GITHUB_TOKEN': 'As provided by Github Actions'
runs:
#using: 'docker'
#image: 'docker://softprops:action-gh-action'
using: 'node12'
main: 'lib/main.js'
branding:
color: 'green'
icon: 'package'