We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d4c1fca commit b889223Copy full SHA for b889223
1 file changed
README.md
@@ -449,6 +449,26 @@ steps:
449
wait: true
450
```
451
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
464
465
466
+ artifacts:
467
468
+```
469
470
+Both field names are supported by Buildkite. The generated pipeline YAML will use `artifact_paths`.
471
472
### `download_folder` (optional)
473
474
Default: `BUILDKITE_PLUGINS_PATH`
0 commit comments