Skip to content

Commit

Permalink
Ensure submodule is correctly initialized
Browse files Browse the repository at this point in the history
  • Loading branch information
simonsejse committed Nov 10, 2024
1 parent 2688cf9 commit 08e7077
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions .github/workflows/automatic_update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,17 @@ jobs:
pip install requests
pip install beautifulsoup4
- name: Remove cached submodule data
run: |
git submodule deinit -f utilities
rm -rf .git/modules/utilities
git submodule update --init --recursive
# Explicitly initialize and update submodules
- name: Force submodule initialization
run: |
git submodule sync
git submodule update --init --recursive
- name: Show current working directory
run: pwd

Expand Down

0 comments on commit 08e7077

Please sign in to comment.