-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathaction.yml
More file actions
63 lines (61 loc) · 1.82 KB
/
action.yml
File metadata and controls
63 lines (61 loc) · 1.82 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
name: Fetch Latest GitHub Release
description:
A tiny GitHub action to fetch the latest GitHub release for a given
repository. Originally forked from
https://github.com/gregziegan/fetch-latest-release on 2023/04/27.
author: City of Los Angeles
branding:
color: green
icon: tag
runs:
using: node20
main: dist/index.cjs
inputs:
github_token:
description: A Github token for the repo, usually `{{ github.token }}`.
required: false
default: ${{ github.token }}
repo_path:
description:
Provide a "owner/repo" string for fetching from a different repo. If not
provided the repository the composite action is ran in will be used.
default: ${{ github.repository }}
required: false
outputs:
url:
description: The HTTP URL for this release
assets_url:
description: The REST API HTTP URL for this release's assets
upload_url:
description: The REST API HTTP URL for uploading to this release
html_url:
description: The REST API HTTP URL for this release
id:
description: ''
node_id:
description:
The unique identifier for accessing this release in the GraphQL API
tag_name:
description: The name of the release's Git tag
target_commitish:
description: ''
name:
description: The title of the release.
draft:
description: Whether or not the release is a draft
author_id:
description: ''
author_node_id:
description:
The unique identifier for accessing this release's author in the GraphQL
API
author_url:
description: The REST API HTTP URL for this release's author
author_login:
description: The username used to login.
author_html_url:
description: The HTTP URL for this release's author
author_type:
description: ''
author_site_admin:
description: Whether or not this user is a site administrator.