action.yml 814 B

12345678910111213141516171819202122232425262728
  1. # https://help.github.com/en/articles/metadata-syntax-for-github-actions
  2. name: 'GH Release'
  3. description: 'Github Action for creating Github Releases'
  4. author: 'softprops'
  5. inputs:
  6. body:
  7. description: 'Note-worthy description of changes in release'
  8. required: false
  9. body-path:
  10. description: 'Path to load note-worthy description of changes in release from'
  11. required: false
  12. name:
  13. description: 'Gives the release a custom name. Defaults to tag name'
  14. required: false
  15. draft:
  16. description: 'Creates a draft release'
  17. required: false
  18. files:
  19. description: 'Comma-delimited list of path globs for asset files to upload'
  20. required: false
  21. env:
  22. 'GITHUB_TOKEN': 'As provided by Github Actions'
  23. runs:
  24. using: 'node12'
  25. main: 'lib/main.js'
  26. branding:
  27. color: 'green'
  28. icon: 'package'