Files
action-gh-release/action.yml
T

55 lines
1.7 KiB
YAML
Raw Normal View History

2019-08-25 23:51:43 -04:00
# https://help.github.com/en/articles/metadata-syntax-for-github-actions
2021-05-03 02:43:58 +02:00
name: "GH Release"
description: "Github Action for creating Github Releases"
author: "softprops"
2019-08-25 23:51:43 -04:00
inputs:
body:
2021-05-03 02:43:58 +02:00
description: "Note-worthy description of changes in release"
2019-08-25 23:51:43 -04:00
required: false
2019-09-29 08:45:47 -04:00
body_path:
2021-05-03 02:43:58 +02:00
description: "Path to load note-worthy description of changes in release from"
required: false
2019-08-25 23:51:43 -04:00
name:
2021-05-03 02:43:58 +02:00
description: "Gives the release a custom name. Defaults to tag name"
2019-08-25 23:51:43 -04:00
required: false
2020-01-09 15:06:19 +09:00
tag_name:
2021-05-03 02:43:58 +02:00
description: "Gives a tag name. Defaults to github.GITHUB_REF"
2020-01-09 15:06:19 +09:00
required: false
2019-08-25 23:51:43 -04:00
draft:
2021-05-03 02:43:58 +02:00
description: "Creates a draft release. Defaults to false"
2019-09-17 23:30:36 +09:00
required: false
prerelease:
2021-05-03 02:43:58 +02:00
description: "Identify the release as a prerelease. Defaults to false"
2019-08-25 23:51:43 -04:00
required: false
files:
2021-05-03 02:43:58 +02:00
description: "Newline-delimited list of path globs for asset files to upload"
2019-08-25 23:51:43 -04:00
required: false
2020-06-24 23:11:41 -07:00
fail_on_unmatched_files:
2021-05-03 02:43:58 +02:00
description: "Fails if any of the `files` globs match nothing. Defaults to false"
2020-06-24 23:11:41 -07:00
required: false
2020-12-20 14:44:30 -05:00
repository:
2021-05-03 02:43:58 +02:00
description: "Repository to make releases against, in <owner>/<repo> format"
2020-12-20 14:44:30 -05:00
required: false
token:
2021-05-03 02:43:58 +02:00
description: "Authorized secret GitHub Personal Access Token. Defaults to github.token"
required: false
default: ${{ github.token }}
2021-05-03 02:43:58 +02:00
target_commitish:
description: "Commitish value that determines where the Git tag is created from. Can be any branch or commit SHA."
required: false
2019-09-09 18:26:06 +09:00
env:
2021-05-03 02:43:58 +02:00
"GITHUB_TOKEN": "As provided by Github Actions"
2019-10-17 11:08:28 -04:00
outputs:
url:
description: 'URL to the Release HTML Page'
2021-05-02 00:56:49 +02:00
id:
description: 'Release ID'
2021-03-21 06:59:32 +01:00
upload_url:
2021-05-03 02:43:58 +02:00
description: "URL for uploading assets to the release"
2019-08-25 23:51:43 -04:00
runs:
2021-05-03 02:43:58 +02:00
using: "node12"
main: "dist/index.js"
2019-08-25 23:51:43 -04:00
branding:
2021-05-03 02:43:58 +02:00
color: "green"
icon: "package"