forked from dawidd6/action-download-artifact
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathaction.yml
More file actions
40 lines (40 loc) · 957 Bytes
/
Copy pathaction.yml
File metadata and controls
40 lines (40 loc) · 957 Bytes
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
name: Download multiple workflow artifacts
description: An action that downloads and extracts multiple uploaded artifacts
author: marcofaggian
branding:
icon: download
color: blue
inputs:
github_token:
description: GitHub token
required: false
default: ${{github.token}}
workflow:
description: Workflow name
required: true
repo:
description: Repository name with owner (like actions/checkout)
required: false
default: ${{github.repository}}
pr:
description: Pull request number
required: false
commit:
description: Commit hash
required: false
branch:
description: Branch name
required: false
event:
description: Event type
required: false
names:
description: Artifact name (download all artifacts in not specified)
required: true
paths:
description: Where to unpack the artifact
required: true
default: "./"
runs:
using: node16
main: dist/main.js