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

Commit 60f2812

Browse files
committed
Fix the $path
1 parent 59360c0 commit 60f2812

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/update-submodule.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
run: |
2424
$line = (git submodule status --recursive | Select-Object -First 1).Trim()
2525
$parts = $line -split '\s+'
26-
$path = "<actual-submodule-path>"
26+
$path = $parts[1]
2727
$hash = (git rev-parse HEAD:$path)
2828
"hash=$hash" >> $env:GITHUB_OUTPUT
2929
"path=$path" >> $env:GITHUB_OUTPUT

0 commit comments

Comments
 (0)