bdy artifact composer publish

View as Markdown
$bdy artifact composer publish|pub [options] <identifier> <directory>

Publish composer version. Required scopes: ARTIFACT_WRITE

ARGUMENTS
identifier
Human-readable ID of the artifact and optionally version: artifact:version or artifact@version (optional)
directory
Path to the directory with composer.json (required)
OPTIONS
-w, --workspace <domain>
Workspace URL handle. Can be set via variable: BUDDY_WORKSPACE
--scope <scope>
Force scope (WORKSPACE, PROJECT). By default calculated by provided options and environmental variables (--project, BUDDY_PROJECT, linked project)
-p, --project <name>
Project name. Can be set via variable: BUDDY_PROJECT
-c, --create
Create artifact if not exists
--note <note>
Note of the artifact version
--agent-note <note>
Note of the artifact version for AI agents
--ignore <patterns>
Comma-separated paths or globs left out of the package (.git is always left out)
-h, --help
display help for command

Documentation for bdy v1.24.8

Last modified on Sep 3, 2026

Examples

Publish new version of composer artifact
bdy art composer pub artifact-identifier:version /path/to/dir$
Publish version from composer.json
bdy art cmp pub artifact-identifier /path/to/dir$
Create new composer artifact
bdy art cmp pub artifact-identifier --create /path/to/dir$
Publish without test files
bdy art cmp pub artifact-identifier /path/to/dir --ignore "tests,**/*.log"$