Skip to content

Commit 9ecc098

Browse files
committed
Test workflow
1 parent e8f1032 commit 9ecc098

File tree

2 files changed

+18
-5
lines changed

2 files changed

+18
-5
lines changed

.github/workflows/update-submodule.yml

+16-3
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
with:
1717
submodules: 'recursive' # Ensure submodules are checked out
1818

19-
# Step 2: Reset submodule to the latest commit (Solution 3)
19+
# Step 2: Reset submodule to the latest commit
2020
- name: Reset submodule to latest commit
2121
run: |
2222
# Reinitialize the submodule (resets its state)
@@ -27,9 +27,22 @@ jobs:
2727
- name: Check submodule status
2828
id: submodule-status
2929
run: |
30+
# Fetch the current commit of the submodule
3031
CURRENT_COMMIT=$(git submodule status --recursive | awk '{ print $1 }')
31-
git submodule update --remote --merge || echo "Merge error occurred"
32-
LATEST_COMMIT=$(git submodule status --recursive | awk '{ print $1 }')
32+
33+
# Ensure we're working with the latest submodule state
34+
git submodule update --init --recursive # Initialize or update submodule to ensure it's in sync
35+
36+
# Go to the submodule directory and fetch the latest commits from the remote repository
37+
cd path/to/submodule # Ensure you replace this with the actual submodule path
38+
git fetch origin # Fetch the latest changes from the remote
39+
git checkout main # Ensure we're on the main branch (or whichever branch you want)
40+
git pull origin main # Pull the latest changes from the remote
41+
42+
# Get the latest commit hash after the update
43+
LATEST_COMMIT=$(git rev-parse HEAD)
44+
45+
# Check if the submodule commit has changed
3346
if [ "$CURRENT_COMMIT" != "$LATEST_COMMIT" ]; then
3447
echo "Submodule updated."
3548
echo "submodule_updated=true" >> $GITHUB_ENV

24-S1/MA1512/README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
- **Target audience**: NUS Year 1 Engineering Students
55
- **Purpose of the course**: Foundational math for modeling real-world system
66
- **Notes Structure**:
7-
- **[MA1512-Notes](./MA1512-Notes)**: This folder contains a comprehensive version of my notes, designed to break down and explain each concept covered in the course in a clear and easy-to-understand manner.
8-
- **[MA1512-Cheatsheet](./MA1512-Cheatsheet)**: Here, you'll find the cheatsheet I created and used throughout the course, summarizing key formulas and methods for quick reference.
7+
- **MA1512-Notes**: This folder contains a comprehensive version of my notes, designed to break down and explain each concept covered in the course in a clear and easy-to-understand manner.
8+
- **MA1512-Cheatsheet**: Here, you'll find the cheatsheet I created and used throughout the course, summarizing key formulas and methods for quick reference.
99

1010
I took this course in AY24/25 Sem 1 for my degree requirement.
1111

0 commit comments

Comments
 (0)