Skip to content

Commit f81e0cb

Browse files
committed
Test workflow
1 parent 9146831 commit f81e0cb

File tree

1 file changed

+14
-13
lines changed

1 file changed

+14
-13
lines changed

.github/workflows/update-submodule.yml

+14-13
Original file line numberDiff line numberDiff line change
@@ -10,25 +10,26 @@ jobs:
1010
runs-on: ubuntu-latest
1111

1212
steps:
13+
# Step 1: Checkout the repository with submodules
1314
- name: Checkout repository
1415
uses: actions/checkout@v3
1516
with:
1617
submodules: 'recursive' # Ensure submodules are checked out
1718

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
1927
- name: Check submodule status
2028
id: submodule-status
2129
run: |
22-
# Get the current submodule commit hash
2330
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"
2932
LATEST_COMMIT=$(git submodule status --recursive | awk '{ print $1 }')
30-
31-
# Compare the commit hashes to check if update is needed
3233
if [ "$CURRENT_COMMIT" != "$LATEST_COMMIT" ]; then
3334
echo "Submodule updated."
3435
echo "submodule_updated=true" >> $GITHUB_ENV
@@ -37,7 +38,7 @@ jobs:
3738
echo "submodule_updated=false" >> $GITHUB_ENV
3839
fi
3940
40-
# Commit changes only if submodules were updated
41+
# Step 4: Commit changes only if submodules were updated
4142
- name: Commit changes
4243
if: env.submodule_updated == 'true'
4344
run: |
@@ -46,12 +47,12 @@ jobs:
4647
git add .
4748
git commit -m "CI: Update submodules" || echo "No changes to commit"
4849
49-
# Pull the latest changes from the remote branch before pushing
50+
# Step 5: Pull the latest changes from the remote branch before pushing
5051
- name: Pull the latest changes
5152
if: env.submodule_updated == 'true'
52-
run: git pull origin main --rebase
53+
run: git pull origin main --rebase --allow-unrelated-histories
5354

54-
# Push the changes to the repository using the PAT
55+
# Step 6: Push the changes back to the repository
5556
- name: Push changes
5657
if: env.submodule_updated == 'true'
5758
env:

0 commit comments

Comments
 (0)