forked from dciborow/action-github-releases
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathaction.yml
More file actions
40 lines (38 loc) · 1.21 KB
/
action.yml
File metadata and controls
40 lines (38 loc) · 1.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
name: "Automatic Releases 2"
author: "dciborow"
description: "Automate the GitHub release process with assets, changelogs, pre-releases, and more"
branding:
icon: "git-merge"
color: "red"
inputs:
repo_token:
description: "GitHub secret token"
required: true
automatic_release_tag:
description: "Git tag (for automatic releases)"
required: false
draft:
description: "Should this release be marked as a draft?"
required: false
default: false
prerelease:
description: "Should this release be marked as a pre-release?"
required: false
default: true
title:
description: "Release title (for automatic releases)"
required: false
files:
description: "Assets to upload to the release"
required: false
generate_release_notes:
description: "Whether to automatically generate the name and body for this release. If name is specified, the specified name will be used; otherwise, a name will be automatically generated"
default: false
outputs:
automatic_releases_tag:
description: "The release tag this action just processed"
upload_url:
description: "The URL for uploading additional assets to the release"
runs:
using: "node16"
main: "dist/index.js"