We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb6092a commit 6340f7cCopy full SHA for 6340f7c
.github/workflows/ci.yml
@@ -30,7 +30,8 @@ jobs:
30
id: discover-submodules
31
run: |
32
submodules=$(git submodule status --recursive | awk '{ print $2 }')
33
- matrix=$(echo "$submodules" | jq -R -s -c 'split("\n")[:-1] | map({ repository: . })')
+ # Convert submodules to JSON array format with owner/repo info
34
+ matrix=$(echo "$submodules" | jq -R -s -c 'split("\n")[:-1] | map({repository: .})')
35
echo "Submodule Matrix: $matrix"
36
echo "::set-output name=submodule-matrix::$matrix"
37
@@ -63,7 +64,7 @@ jobs:
63
64
65
cd ${{ matrix.repository }}
66
echo "Changed directory to ${{ matrix.repository }}"
-
67
+
68
# Check if the directory exists before trying to run pnpm
69
if [ -d "$PWD" ]; then
70
pnpm install
0 commit comments