We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d87770b commit b45e8f4Copy full SHA for b45e8f4
1 file changed
.github/workflows/probe.yml
@@ -31,6 +31,7 @@ jobs:
31
SERVERS=$(docker compose config --format json | jq -c '
32
[.services | to_entries[] |
33
select(.value.labels["probe.port"] != null) |
34
+ select(.key == "glyph") |
35
{
36
service: .key,
37
port: (.value.labels["probe.port"] | tonumber),
@@ -571,7 +572,8 @@ jobs:
571
572
if git fetch origin latest-results 2>/dev/null; then
573
git worktree add /tmp/latest-results origin/latest-results
574
else
- 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
577
fi
578
mkdir -p /tmp/latest-results/probe
579
cp probe-data.js /tmp/latest-results/probe/data.js
0 commit comments