Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 1.14 KB

README.md

File metadata and controls

28 lines (19 loc) · 1.14 KB

Home

Orb Source

Orbs are shipped as individual orb.yml files, however, to make development easier, it is possible to author an orb in unpacked form, which can be packed with the CircleCI CLI and published.

The default .circleci/config.yml file contains the configuration code needed to automatically pack, test, and deploy and changes made to the contents of the orb source in this directory.

@orb.yml

This is the entry point for our orb "tree", which becomes our orb.yml file later.

Within the @orb.yml we generally specify 4 configuration keys

Keys

  1. version Specify version 2.1 for orb-compatible configuration version: 2.1
  2. description Give your orb a description. Shown within the CLI and orb registry
  3. display Specify the home_url referencing documentation or product URL, and source_url linking to the orb's source repository.
  4. orbs (optional) Some orbs may depend on other orbs. Import them here.

See: