Skip to content

Commit

Permalink
Update plugin version
Browse files Browse the repository at this point in the history
  • Loading branch information
pzeballos authored Sep 19, 2023
1 parent 030a835 commit 4c8379d
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.9.1:
- artifacts#v1.9.2:
upload: "log/**/*.log"
```
Expand All @@ -20,7 +20,7 @@ You can specify multiple files/globs to upload as artifacts:
steps:
- command: ...
plugins:
- artifacts#v1.9.1:
- artifacts#v1.9.2:
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.9.1:
- artifacts#v1.9.2:
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.9.1:
- artifacts#v1.9.2:
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.9.1:
- artifacts#v1.9.2:
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.9.1:
- artifacts#v1.9.2:
download: "log/**/*.log"
```
Expand All @@ -80,7 +80,7 @@ You can specify multiple files/patterns:
steps:
- command: ...
plugins:
- artifacts#v1.9.1:
- artifacts#v1.9.2:
download: [ "log/**/*.log", "debug/*.error" ]
```
Expand All @@ -90,7 +90,7 @@ Rename particular files after downloading them:
steps:
- command: ...
plugins:
- artifacts#v1.9.1:
- artifacts#v1.9.2:
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.9.1:
- artifacts#v1.9.2:
step: UUID-DEFAULT
build: UUID-DEFAULT-2
download:
Expand Down Expand Up @@ -145,7 +145,7 @@ When uploading, the file or directory specified in the `upload` option will be c
steps:
- command: ...
plugins:
- artifacts#v1.9.1:
- artifacts#v1.9.2:
upload: "log/my-folder"
compressed: logs.zip
```
Expand All @@ -156,7 +156,7 @@ When downloading, this option states the actual name of the artifact to be downl
steps:
- command: ...
plugins:
- artifacts#v1.9.1:
- artifacts#v1.9.2:
download: "log/file.log"
compressed: logs.tgz
```
Expand All @@ -177,7 +177,7 @@ Skip uploading if the main command failed with exit code 147:
steps:
- command: ...
plugins:
- artifacts#v1.9.1:
- artifacts#v1.9.2:
upload: "log/*.log"
skip-on-status: 147
```
Expand All @@ -188,7 +188,7 @@ Alternatively, skip artifact uploading on exit codes 1 and 5:
steps:
- command: ...
plugins:
- artifacts#v1.9.1:
- artifacts#v1.9.2:
upload: "log/*.log"
skip-on-status:
- 1
Expand Down

0 comments on commit 4c8379d

Please sign in to comment.