Skip to content

NeuraLegion/circleci-orb

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

16 Commits
 
 
 
 
 
 
 
 

Repository files navigation

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