-
Notifications
You must be signed in to change notification settings - Fork 5
/
action.yaml
45 lines (44 loc) · 1.15 KB
/
action.yaml
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
name: "Docker Image Artifact Download"
description: "Downloads docker image artifact uploaded from another job in same workflow"
inputs:
image:
description: Docker image to download
required: true
repository:
description: Repository name in form of `owner/repo`.
required: false
default: ""
workflow:
description: Name of the workflow to download image from.
required: false
default: ""
token:
description: Github token with read permission to artifacts in given repo.
required: false
default: ""
workflow_conclusion:
description: Conclusion for an workflow run.
required: false
default: ""
commit_sha:
description: SHA for the commit.
required: false
default: ""
branch:
description: Branch name.
required: false
default: ""
workflow_event:
description: Name of event that triggered the workflow run.
required: false
default: ""
workflow_run_id:
description: Exact run id for the workflow.
required: false
default: ""
outputs:
download_path:
description: Download path of the content of the artifact
runs:
using: "node16"
main: "dist/main.js"