@@ -10,25 +10,26 @@ jobs:
10
10
runs-on : ubuntu-latest
11
11
12
12
steps :
13
+ # Step 1: Checkout the repository with submodules
13
14
- name : Checkout repository
14
15
uses : actions/checkout@v3
15
16
with :
16
17
submodules : ' recursive' # Ensure submodules are checked out
17
18
18
- # Check if the submodule is already up-to-date
19
+ # Step 2: Reset submodule to the latest commit (Solution 3)
20
+ - name : Reset submodule to latest commit
21
+ run : |
22
+ # Reinitialize the submodule (resets its state)
23
+ git submodule update --init --recursive
24
+ git submodule foreach 'git reset --hard origin/main' # This resets the submodule to the latest commit from remote
25
+
26
+ # Step 3: Check if the submodule is already up-to-date
19
27
- name : Check submodule status
20
28
id : submodule-status
21
29
run : |
22
- # Get the current submodule commit hash
23
30
CURRENT_COMMIT=$(git submodule status --recursive | awk '{ print $1 }')
24
-
25
- # Update submodule to the latest commit if it's not up to date
26
- git submodule update --remote --merge
27
-
28
- # Get the latest submodule commit hash after the update
31
+ git submodule update --remote --merge || echo "Merge error occurred"
29
32
LATEST_COMMIT=$(git submodule status --recursive | awk '{ print $1 }')
30
-
31
- # Compare the commit hashes to check if update is needed
32
33
if [ "$CURRENT_COMMIT" != "$LATEST_COMMIT" ]; then
33
34
echo "Submodule updated."
34
35
echo "submodule_updated=true" >> $GITHUB_ENV
37
38
echo "submodule_updated=false" >> $GITHUB_ENV
38
39
fi
39
40
40
- # Commit changes only if submodules were updated
41
+ # Step 4: Commit changes only if submodules were updated
41
42
- name : Commit changes
42
43
if : env.submodule_updated == 'true'
43
44
run : |
@@ -46,12 +47,12 @@ jobs:
46
47
git add .
47
48
git commit -m "CI: Update submodules" || echo "No changes to commit"
48
49
49
- # Pull the latest changes from the remote branch before pushing
50
+ # Step 5: Pull the latest changes from the remote branch before pushing
50
51
- name : Pull the latest changes
51
52
if : env.submodule_updated == 'true'
52
- run : git pull origin main --rebase
53
+ run : git pull origin main --rebase --allow-unrelated-histories
53
54
54
- # Push the changes to the repository using the PAT
55
+ # Step 6: Push the changes back to the repository
55
56
- name : Push changes
56
57
if : env.submodule_updated == 'true'
57
58
env :
0 commit comments