Installation
Quick Install
Section titled “Quick Install”curl -fsSL https://orchstep.dev/install.sh | shPackage Managers
Section titled “Package Managers”| Platform | Command |
|---|---|
| Homebrew | brew tap orchstep/tap && brew install orchstep |
| npm | npm install -g orchstep |
| pip | pip install orchstep |
| Docker | docker pull orchstep/orchstep:latest |
GitHub Action
Section titled “GitHub Action”Install the OrchStep CLI in a workflow with setup-orchstep:
steps: - uses: actions/checkout@v4 - uses: orchstep/setup-orchstep@v1 with: version: latest - run: orchstep run deployOr run a workflow in a single step with run-orchstep:
steps: - uses: actions/checkout@v4 - uses: orchstep/run-orchstep@v1 with: workflow: deploy.orchstep.yml vars: | env=productionVerify
Section titled “Verify”orchstep version