Skip to content

Commit

Permalink
Add debug step to figure out path issues
Browse files Browse the repository at this point in the history
  • Loading branch information
J2-D2-3PO committed Nov 21, 2024
1 parent f609068 commit a6803e5
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/generate-llms.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,18 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Debug path issues
run: |
echo "Current directory: $(pwd)"
echo "GitHub workspace: $GITHUB_WORKSPACE"
if [ "$(pwd)" != "$GITHUB_WORKSPACE" ]; then
echo "Error: Current directory does not match \$GITHUB_WORKSPACE"
exit 1
fi
- name: List directory contents
run: ls -R

- name: Set up Python
uses: actions/setup-python@v4
Expand Down

0 comments on commit a6803e5

Please sign in to comment.