Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Debug strange error #17381

Merged
merged 1 commit into from
Jan 31, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .github/actions/checkout-with-submodule-lfs/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,10 +17,22 @@ runs:
- name: Clean repo (if it exists)
shell: bash
run: |
set -x
ls -al
if [ -f "semicolon_delimited_script" ]; then
file semicolon_delimited_script
head semicolon_delimited_script
fi
if [ -d ".git" ]; then
echo 'Cleaning repo'
git clean -xffd
echo 'Done git clean -xffd'
echo 'Attempting to delete any lock files'
find .git -type f -iname '*.lock' -delete
echo 'Done deleting lock files'
echo 'De-init-ing submodules'
git submodule deinit -f --all
echo 'Done de-initing submodules'
fi
- name: Checkout repo
uses: actions/checkout@v4
Expand Down
Loading