Skip to content

Commit 85b106a

Browse files
Fix: add Overmind CLI to PATH after install-cli step
install-cli only extracts the binary to ./overmindtech/overmind, it doesn't add it to PATH - that step alone left `overmind` unresolvable for the plain shell script that follows it (exit 127). Co-authored-by: Cursor <cursoragent@cursor.com>
1 parent b3e3963 commit 85b106a

1 file changed

Lines changed: 8 additions & 0 deletions

File tree

.github/workflows/cross-vpc-compliance-demo.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,14 @@ jobs:
3737
version: latest
3838
github-token: ${{ secrets.GITHUB_TOKEN }}
3939

40+
- name: Add Overmind CLI to PATH
41+
run: |
42+
# install-cli only extracts the binary to ./overmindtech/overmind,
43+
# it doesn't put it on PATH (that's only done implicitly for the
44+
# other overmindtech/actions/* composite actions, which reference
45+
# it by relative path directly).
46+
echo "$GITHUB_WORKSPACE/overmindtech" >> "$GITHUB_PATH"
47+
4048
- name: Delete stale Overmind changes from previous demo runs
4149
env:
4250
OVM_API_KEY: ${{ secrets.OVM_API_KEY }}

0 commit comments

Comments
 (0)