in a more traditional workflow, one can have steps that run relative bash scripts, ie:
steps:
- checkout
- run:
command: |
.circleci/install_tools.sh
.circleci/release.sh
I’m wondering if there’s a way to package the .sh
scripts with the Orb, so that different users of the orb get the same functionality that’s in the scripts.