From 6410743e34b0b26f14ba0dfd9c1bed66d4d92894 Mon Sep 17 00:00:00 2001 From: Peter Steinberger Date: Tue, 5 May 2026 09:42:51 +0100 Subject: [PATCH] fix: keep Slack Mantis output repo-relative --- .github/workflows/mantis-slack-desktop-smoke.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/mantis-slack-desktop-smoke.yml b/.github/workflows/mantis-slack-desktop-smoke.yml index 76dac4038c0..b6ede3f0ff3 100644 --- a/.github/workflows/mantis-slack-desktop-smoke.yml +++ b/.github/workflows/mantis-slack-desktop-smoke.yml @@ -209,7 +209,8 @@ jobs: require_var CRABBOX_COORDINATOR_TOKEN candidate_repo="$(pwd)/.artifacts/qa-e2e/mantis/slack-desktop-smoke-worktrees/candidate" - root="$candidate_repo/.artifacts/qa-e2e/mantis/slack-desktop-smoke" + output_rel=".artifacts/qa-e2e/mantis/slack-desktop-smoke" + root="$candidate_repo/$output_rel" echo "output_dir=${root}" >> "$GITHUB_OUTPUT" keep_args=() if [[ "$KEEP_VM" == "true" ]]; then @@ -218,7 +219,7 @@ jobs: pnpm openclaw qa mantis slack-desktop-smoke \ --repo-root "$candidate_repo" \ - --output-dir "$root" \ + --output-dir "$output_rel" \ --provider hetzner \ --class standard \ --idle-timeout 45m \