File tree Expand file tree Collapse file tree 3 files changed +15
-0
lines changed
Expand file tree Collapse file tree 3 files changed +15
-0
lines changed Original file line number Diff line number Diff line change 11.DS_Store
22orb.yml
3+ .idea
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+ # Publishes and releases the version of the Orb to the CCI repo. Reads in Semantic version for the arg.
3+ # You must have a valid CCI token setup to run this script.
4+
5+ if [ $# -eq 0 ]
6+ then
7+ echo " The semantic version must be provided as an argument. I.E. '1.0.0'"
8+ else
9+ circleci config pack src > orb.yml
10+ circleci orb validate orb.yml
11+ circleci orb publish orb.yml " narrativescience/workflow-manager@$1 "
12+ fi
13+
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ parameters:
1818steps :
1919 - attach_workspace :
2020 at : /tmp/workspace
21+ when : always
2122 - run :
2223 name : Set failure condition
2324 when : on_fail
You can’t perform that action at this time.
0 commit comments