-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathplugin.yml
More file actions
74 lines (74 loc) · 1.54 KB
/
plugin.yml
File metadata and controls
74 lines (74 loc) · 1.54 KB
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
69
70
71
72
73
74
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
expand-download-vars:
type: boolean
expand-upload-vars:
type: boolean
oneOf:
- required:
- upload
- required:
- download
dependencies:
skip-on-status: [ upload ]
expand-download-vars: [ download ]
expand-upload-vars: [ upload ]
additionalProperties: false