Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 618 Bytes

README.md

File metadata and controls

32 lines (22 loc) · 618 Bytes

Commands to work with orb

Publish a new version of the orb:

$ circleci orb publish ./.config.yml neuralegion/nexploit@0.0.13

Useful to see how CircleCI config is expanding with the orb:

$ circleci config process .circleci/config.yml

Create a new orb in namespace:

$ circleci orb create neuralegion/nexploit

Create a new namespace:

$ circleci namespace create neuralegion github NeuraLegion

To push image to Docker Hub:

$ docker build -t nexploit-cli . && docker tag nexploit-cli neuralegion/nexploit-cli && \
    docker push neuralegion/nexploit-cli