Skip to content

Commit b889223

Browse files
committed
Update README
1 parent d4c1fca commit b889223

1 file changed

Lines changed: 20 additions & 0 deletions

File tree

README.md

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -449,6 +449,26 @@ steps:
449449
wait: true
450450
```
451451

452+
**Note:** This plugin accepts both `artifact_paths` and `artifacts` field names for backward compatibility:
453+
454+
```yaml
455+
# Preferred - use "artifact_paths":
456+
- path: "app/"
457+
config:
458+
command: "npm test"
459+
artifact_paths:
460+
- "logs/**/*"
461+
462+
# Also supported - "artifacts":
463+
- path: "app/"
464+
config:
465+
command: "npm test"
466+
artifacts:
467+
- "logs/**/*"
468+
```
469+
470+
Both field names are supported by Buildkite. The generated pipeline YAML will use `artifact_paths`.
471+
452472
### `download_folder` (optional)
453473

454474
Default: `BUILDKITE_PLUGINS_PATH`

0 commit comments

Comments
 (0)