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