-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
44 lines (44 loc) · 1.21 KB
/
action.yml
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
40
41
42
43
44
name: Get or Create Release
description: Creates a GitHub release or attaches assets to an existing one
inputs:
assets:
description: File glob expression(s) of assets to attach to the release
required: false
body:
description: Text describing the contents of the release
required: false
github_token:
description: GitHub personal access token
required: true
default: ${{ github.token }}
prerelease:
description: true to identify the release as a prerelease
required: false
previous_release_sha:
description: Commit SHA of the previous release
required: false
publish:
description: true to publish the release, false to leave as a draft
required: true
default: "true"
release_name:
description: Name of the release
required: false
tag_name:
description: Tag from which to create the release
required: true
target_commitish:
description: Specifies where the tag is created from
required: true
default: ${{ github.sha }}
outputs:
release_id:
description: The ID of the release
upload_url:
description: The URL for uploading assets to the release
runs:
using: node20
main: dist/index.js
branding:
icon: tag
color: blue