generated from actions/typescript-action
-
Notifications
You must be signed in to change notification settings - Fork 6
/
action.yml
37 lines (37 loc) · 1.07 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
name: 'Download an artifact from an Azure Pipeline'
description: 'Download an artifact from an Azure Pipeline'
author: 'Johannes Schindelin'
branding:
icon: fast-forward
color: blue
inputs:
repository:
required: true
description: 'The repository in which the Azure Pipeline lives'
definitionId:
required: true
description: 'The identifier of the Azure Pipeline'
artifact:
required: false
description: 'The name of the Azure Pipeline artifact'
stripPrefix:
required: false
description: "Strip this prefix from the artifact files' paths; Defaults to '<artifact>/'"
path:
required: false
description: 'Where to write the artifact file(s)'
verbose:
required: false
description: 'Whether to log files as they are extracted'
default: '250'
cache:
required: false
description: 'Use @actions/cache to accelerate this Action'
default: 'true'
reasonFilter:
required: false
description: 'Filter results by the reason for the build; Defaults to "all"'
default: 'all'
runs:
using: 'node20'
main: 'dist/index.js'