Skip to content
This repository was archived by the owner on Apr 24, 2026. It is now read-only.

Commit a9c5ef4

Browse files
committed
Refactor GitHub Actions workflow to remove unnecessary submodule initialization and improve debug output
1 parent d202465 commit a9c5ef4

1 file changed

Lines changed: 5 additions & 9 deletions

File tree

.github/workflows/build-agent-manager.yml

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -16,21 +16,17 @@ jobs:
1616
- name: Checkout repository
1717
uses: actions/checkout@v4
1818
with:
19-
submodules: false # Skip automatic submodule init
20-
21-
- name: Manually init and update submodules
22-
run: |
23-
git submodule sync --recursive
24-
git config --global url."git://github.com/".insteadOf "https://github.com/" # Use git:// for anonymous clone (no auth prompt)
25-
git submodule update --init --recursive --force
19+
submodules: false # No submodules needed for agent-manager
2620

2721
- name: Debug context
2822
run: |
23+
pwd
2924
ls -la .
3025
ls -la agent-manager || echo "agent-manager missing!"
31-
ls -la agent-manager/src || echo "src missing or empty!"
32-
ls -la agent-manager/src/*.js 2>/dev/null || echo "No JS files found in src"
26+
ls -la agent-manager/src || echo "src folder missing or empty!"
27+
ls -la agent-manager/src/*.js 2>/dev/null || echo "No JS files in src"
3328
cat agent-manager/package.json || echo "package.json not found"
29+
cat agent-manager/Dockerfile || echo "Dockerfile not found"
3430
3531
- name: Set up Docker Buildx
3632
uses: docker/setup-buildx-action@v3

0 commit comments

Comments
 (0)