From 30dfbfdd8da68dd3848d8074760978fb7cc8d666 Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Fri, 3 Jul 2020 08:52:30 +0200 Subject: [PATCH] Properly declare new inputs and outputs --- action.yml | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 0deba03..757ab0d 100644 --- a/action.yml +++ b/action.yml @@ -20,7 +20,14 @@ inputs: overwrite: description: 'Overwrite the release in case it already exists' file_glob: - description: 'if true the file can be a glob pattern, asset_name is ignored if this is true' + description: 'If true the file can be a glob pattern, asset_name is ignored if this is true' + prerelease: + description: 'Mark the release as a pre-release' + body: + description: 'Content of the release text' +outputs: + browser_download_url: + description: 'The publicly available URL of the asset.' runs: using: 'node12' main: 'dist/index.js'