Deliver Command

The deliver command creates new builds for packages that have been modified by your latest commit.

Usage

ocuroot deliver [flags]

Description

Deliver will create new builds for any packages that have been modified by your latest commit in the current repo.

Once the builds are complete, the packages will be deployed to any environments that they can be deployed to without further testing, as per policy.

You can specify which packages to deliver by adding the --package flag.

Flags

  • --package: Filter to a specific set of packages (can be specified multiple times)
  • --all-packages: Deliver all packages in the repository
  • Inherits global flags from the root command

Examples

# Deliver only modified packages
ocuroot deliver

# Deliver specific packages
ocuroot deliver --package frontend --package api

# Deliver all packages in the repository
ocuroot deliver --all-packages

Behavior Notes

  • The command will issue a warning if there are uncommitted files in your repository
  • It is recommended to commit or stash changes before delivering to ensure predictable build results
  • build: Build a specific package
  • deploy: Deploy a specific build to an environment
  • review: Review and validate a package