Skip to content

Commit b45e8f4

Browse files
MDA2AVclaude
andcommitted
Fix orphan worktree creation + limit to glyph for debugging
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent d87770b commit b45e8f4

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

.github/workflows/probe.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ jobs:
3131
SERVERS=$(docker compose config --format json | jq -c '
3232
[.services | to_entries[] |
3333
select(.value.labels["probe.port"] != null) |
34+
select(.key == "glyph") |
3435
{
3536
service: .key,
3637
port: (.value.labels["probe.port"] | tonumber),
@@ -571,7 +572,8 @@ jobs:
571572
if git fetch origin latest-results 2>/dev/null; then
572573
git worktree add /tmp/latest-results origin/latest-results
573574
else
574-
git worktree add --orphan latest-results /tmp/latest-results
575+
git worktree add --detach /tmp/latest-results HEAD
576+
git -C /tmp/latest-results switch --orphan latest-results
575577
fi
576578
mkdir -p /tmp/latest-results/probe
577579
cp probe-data.js /tmp/latest-results/probe/data.js

0 commit comments

Comments
 (0)