-
Notifications
You must be signed in to change notification settings - Fork 22
/
plugin.yml
68 lines (68 loc) · 1.38 KB
/
plugin.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
name: Artifacts
description: Upload and download artifacts
author: https://github.com/buildkite
requirements:
- bash
configuration:
definitions:
from-to-object:
type: object
properties:
from:
type: string
to:
type: string
step:
type: string
build:
type: string
required:
- from
properties:
upload:
oneOf:
- $ref: '#/definitions/from-to-object'
- type: string
- type: array
items:
type: string
- type: array
items:
$ref: '#/definitions/from-to-object'
download:
oneOf:
- $ref: '#/definitions/from-to-object'
- type: string
- type: array
items:
type: string
- type: array
items:
$ref: '#/definitions/from-to-object'
step:
type: string
build:
type: string
s3-upload-acl:
type: string
gs-upload-acl:
type: string
compressed:
type: string
pattern: '.*(.zip|.tgz)$'
ignore-missing:
type: boolean
skip-on-status:
oneOf:
- type: integer
- type: array
items:
type: integer
oneOf:
- required:
- upload
- required:
- download
dependencies:
skip-on-status: [ upload ]
additionalProperties: false