Skip to content

Commit

Permalink
adding debugging to see why it's not detecting changes in arrow. Plus…
Browse files Browse the repository at this point in the history
… undo blockpoints.arrow change
  • Loading branch information
Alex Silverman committed Nov 13, 2024
1 parent ae2bc0d commit 2253532
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/push_to_ejam.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,11 @@ jobs:
run: |
# List modified files in the PR
base_commit=$(git merge-base HEAD main)
echo "Base commit: $base_commit"
echo "Current HEAD commit: $HEAD"
modified_files=$(git diff --name-only "$base_commit" HEAD)
echo "Modified files: $modified_files"
# Check if any Arrow files were modified (based on their file extension or path)
if echo "$modified_files" | grep -qE "\.arrow$"; then
Expand Down
2 changes: 1 addition & 1 deletion data/blockpoints.arrow
Git LFS file not shown

0 comments on commit 2253532

Please sign in to comment.