Skip to content

Commit

Permalink
Updated version to next value
Browse files Browse the repository at this point in the history
  • Loading branch information
toote committed Jan 9, 2023
1 parent da9c0f1 commit 7af505c
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This functionality duplicates the [artifact_paths](https://buildkite.com/docs/pi
steps:
- command: ...
plugins:
- artifacts#v1.8.0:
- artifacts#v1.9.0:
upload: "log/**/*.log"
```
Expand All @@ -20,7 +20,7 @@ You can specify multiple files/globs to upload as artifacts:
steps:
- command: ...
plugins:
- artifacts#v1.8.0:
- artifacts#v1.9.0:
upload: [ "log/**/*.log", "debug/*.error" ]
```
Expand All @@ -30,7 +30,7 @@ And even rename them before uploading them (can not use globs here though, sorry
steps:
- command: ...
plugins:
- artifacts#v1.8.0:
- artifacts#v1.9.0:
upload:
- from: log1.log
to: log2.log
Expand All @@ -47,7 +47,7 @@ eg: uploading a public file when using S3
steps:
- command: ...
plugins:
- artifacts#v1.8.0:
- artifacts#v1.9.0:
upload: "coverage-report/**/*"
s3-upload-acl: public-read
```
Expand All @@ -57,7 +57,7 @@ eg: uploading a private file when using GS
steps:
- command: ...
plugins:
- artifacts#v1.8.0:
- artifacts#v1.9.0:
upload: "coverage-report/**/*"
gs-upload-acl: private
```
Expand All @@ -70,7 +70,7 @@ This downloads artifacts matching globs to the local filesystem. See [downloadin
steps:
- command: ...
plugins:
- artifacts#v1.8.0:
- artifacts#v1.9.0:
download: "log/**/*.log"
```
Expand All @@ -80,7 +80,7 @@ You can specify multiple files/patterns:
steps:
- command: ...
plugins:
- artifacts#v1.8.0:
- artifacts#v1.9.0:
download: [ "log/**/*.log", "debug/*.error" ]
```
Expand All @@ -90,7 +90,7 @@ Rename particular files after downloading them:
steps:
- command: ...
plugins:
- artifacts#v1.8.0:
- artifacts#v1.9.0:
download:
- from: log1.log
to: log2.log
Expand All @@ -102,7 +102,7 @@ And even do so from different builds/steps:
steps:
- command: ...
plugins:
- artifacts#v1.8.0:
- artifacts#v1.9.0:
step: UUID-DEFAULT
build: UUID-DEFAULT-2
download:
Expand Down Expand Up @@ -144,7 +144,7 @@ When uploading, globs specified in the `upload` option will be compressed in a s
steps:
- command: ...
plugins:
- artifacts#v1.8.0:
- artifacts#v1.9.0:
upload: "log/*.log"
compressed: logs.zip
```
Expand All @@ -155,7 +155,7 @@ When downloading, this option states the actual name of the artifact to be downl
steps:
- command: ...
plugins:
- artifacts#v1.8.0:
- artifacts#v1.9.0:
download: "log/*.log"
compressed: logs.tgz
```
Expand All @@ -176,7 +176,7 @@ Skip uploading if the main command failed with exit code 147:
steps:
- command: ...
plugins:
- artifacts#v1.8.0:
- artifacts#v1.9.0:
upload: "log/*.log"
skip-on-status: 147
```
Expand All @@ -187,7 +187,7 @@ Alternatively, skip artifact uploading on exit codes 1 and 5:
steps:
- command: ...
plugins:
- artifacts#v1.8.0:
- artifacts#v1.9.0:
upload: "log/*.log"
skip-on-status:
- 1
Expand Down

0 comments on commit 7af505c

Please sign in to comment.