forked from dawidd6/action-download-artifact
-
Notifications
You must be signed in to change notification settings - Fork 0
/
action.yml
43 lines (43 loc) · 1.03 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
name: Download workflow artifact
description: Download and extract an artifact associated with given workflow and commit
author: dawidd6
branding:
icon: download
color: blue
inputs:
github_token:
description: GitHub token
required: false
default: ${{github.token}}
workflow:
description: Workflow name
required: true
workflow_conclusion:
description: Wanted conclusion to search for in recent runs
required: false
repo:
description: Repository name with owner (like actions/checkout)
required: false
default: ${{github.repository}}
pr:
description: Pull request number
required: false
commit:
description: Commit SHA1
required: false
branch:
description: Branch name
required: false
run_id:
description: Workflow run id
required: false
name:
description: Artifact name (download all artifacts in not specified)
required: false
path:
description: Where to unpack the artifact
required: false
default: "./"
runs:
using: node12
main: main.js