-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
action.yml
25 lines (25 loc) · 816 Bytes
/
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
name: 'Delete Release Assets'
description: 'Delete all assets attached to a release. Mainly designed to make sure electron-builder does not fail if asset already exists.'
branding:
icon: 'file-minus'
color: 'red'
inputs:
tag:
description: 'Tag name that identifies the release (version is read from package.json if not specified)'
required: false
default: ''
tagPrefix:
description: 'Prefix that is automatically added to the start of the tag name'
required: false
default: ''
deleteOnlyFromDrafts:
description: 'Delete assets only from draft releases or all releases'
required: false
default: 'true'
github_token:
description: 'GitHub Access Token (usually secrets.GITHUB_TOKEN)'
required: true
default: ''
runs:
using: 'node20'
main: 'dist/index.js'