12345678910111213141516171819202122232425262728 |
- # 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: 'node12'
- main: 'lib/main.js'
- branding:
- color: 'green'
- icon: 'package'
|