Skip to content

Commit e4f9c84

Browse files
hyperpolymathclaude
andcommitted
fix(ci): hypatia-scan working-directory uses shell $HOME not env.HOME
${{ env.HOME }} is not set in GitHub Actions context, causing working-directory to resolve to /hypatia instead of /home/runner/hypatia. Use cd "$HOME/hypatia" in the run block instead. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent e081fb2 commit e4f9c84

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/hypatia-scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,8 +37,8 @@ jobs:
3737
fi
3838
3939
- name: Build Hypatia scanner (if needed)
40-
working-directory: ${{ env.HOME }}/hypatia
4140
run: |
41+
cd "$HOME/hypatia"
4242
if [ ! -f hypatia-v2 ]; then
4343
echo "Building hypatia-v2 scanner..."
4444
cd scanner

0 commit comments

Comments
 (0)