generated from actions/typescript-action
-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
action.yml
33 lines (33 loc) · 1.1 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
name: "Yet Another Upload Release Asset Action"
description: "Yet Another Upload Release Asset Action"
author: "Ichinose Shogo"
inputs:
github_token:
description: "The API token for GitHub"
required: true
default: "${{ github.token }}"
upload_url:
description: "The URL for uploading assets to the release"
required: true
asset_path:
description: "The path to the asset you want to upload"
required: true
asset_name:
description: "The name of the asset you want to upload"
required: false
asset_content_type:
description: "The content-type of the asset you want to upload. See the supported Media Types here: https://www.iana.org/assignments/media-types/media-types.xhtml for more information"
required: false
overwrite:
description: "If an asset with the same name already exists, overwrite it (Default: false)"
required: false
default: false
outputs:
browser_download_url:
description: "The URL users can navigate to in order to download the uploaded asset"
runs:
using: "node20"
main: "dist/index.js"
branding:
icon: "package"
color: "gray-dark"