@@ -10,7 +10,7 @@ This functionality duplicates the [artifact_paths](https://buildkite.com/docs/pi
1010steps :
1111 - command : ...
1212 plugins :
13- - artifacts#v1.9.3 :
13+ - artifacts#v1.9.4 :
1414 upload : " log/**/*.log"
1515` ` `
1616
@@ -20,7 +20,7 @@ You can specify multiple files/globs to upload as artifacts:
2020steps :
2121 - command : ...
2222 plugins :
23- - artifacts#v1.9.3 :
23+ - artifacts#v1.9.4 :
2424 upload : [ "log/**/*.log", "debug/*.error" ]
2525` ` `
2626
@@ -30,7 +30,7 @@ And even rename them before uploading them (can not use globs here though, sorry
3030steps :
3131 - command : ...
3232 plugins :
33- - artifacts#v1.9.3 :
33+ - artifacts#v1.9.4 :
3434 upload :
3535 - from : log1.log
3636 to : log2.log
@@ -47,7 +47,7 @@ eg: uploading a public file when using S3
4747steps :
4848 - command : ...
4949 plugins :
50- - artifacts#v1.9.3 :
50+ - artifacts#v1.9.4 :
5151 upload : " coverage-report/**/*"
5252 s3-upload-acl : public-read
5353` ` `
@@ -57,7 +57,7 @@ eg: uploading a private file when using GS
5757steps :
5858 - command : ...
5959 plugins :
60- - artifacts#v1.9.3 :
60+ - artifacts#v1.9.4 :
6161 upload : " coverage-report/**/*"
6262 gs-upload-acl : private
6363` ` `
@@ -70,7 +70,7 @@ This downloads artifacts matching globs to the local filesystem. See [downloadin
7070steps :
7171 - command : ...
7272 plugins :
73- - artifacts#v1.9.3 :
73+ - artifacts#v1.9.4 :
7474 download : " log/**/*.log"
7575` ` `
7676
@@ -80,7 +80,7 @@ You can specify multiple files/patterns:
8080steps :
8181 - command : ...
8282 plugins :
83- - artifacts#v1.9.3 :
83+ - artifacts#v1.9.4 :
8484 download : [ "log/**/*.log", "debug/*.error" ]
8585` ` `
8686
@@ -90,7 +90,7 @@ Rename particular files after downloading them:
9090steps :
9191 - command : ...
9292 plugins :
93- - artifacts#v1.9.3 :
93+ - artifacts#v1.9.4 :
9494 download :
9595 - from : log1.log
9696 to : log2.log
@@ -102,7 +102,7 @@ And even do so from different builds/steps:
102102steps :
103103 - command : ...
104104 plugins :
105- - artifacts#v1.9.3 :
105+ - artifacts#v1.9.4 :
106106 step : UUID-DEFAULT
107107 build : UUID-DEFAULT-2
108108 download :
@@ -145,7 +145,7 @@ When uploading, the file or directory specified in the `upload` option will be c
145145steps:
146146 - command: ...
147147 plugins:
148- - artifacts#v1.9.3 :
148+ - artifacts#v1.9.4 :
149149 upload: "log/my-folder"
150150 compressed: logs.zip
151151` ` `
@@ -156,7 +156,7 @@ When downloading, this option states the actual name of the artifact to be downl
156156steps:
157157 - command: ...
158158 plugins:
159- - artifacts#v1.9.3 :
159+ - artifacts#v1.9.4 :
160160 download: "log/file.log"
161161 compressed: logs.tgz
162162` ` `
@@ -177,7 +177,7 @@ Skip uploading if the main command failed with exit code 147:
177177steps:
178178 - command: ...
179179 plugins:
180- - artifacts#v1.9.3 :
180+ - artifacts#v1.9.4 :
181181 upload: "log/*.log"
182182 skip-on-status: 147
183183` ` `
@@ -188,7 +188,7 @@ Alternatively, skip artifact uploading on exit codes 1 and 5:
188188steps:
189189 - command: ...
190190 plugins:
191- - artifacts#v1.9.3 :
191+ - artifacts#v1.9.4 :
192192 upload: "log/*.log"
193193 skip-on-status:
194194 - 1
0 commit comments