fix(ci): correct subsitute stuff
Some checks failed
📊 Benchmark the Runtime / release (pull_request) Successful in 1m29s
🚀 Lint & Test & Deploy / release (pull_request) Failing after 1m1s

This commit is contained in:
2026-04-24 21:39:42 +02:00
parent 3dba3c2b39
commit 6457c9db0b

View File

@@ -71,7 +71,7 @@ jobs:
# 3. Create a directory structure based on the branch # 3. Create a directory structure based on the branch
# This allows the UI to "switch between branches" # This allows the UI to "switch between branches"
SAFE_PR_NAME="${GITHUB_HEAD_REF//\//-}" SAFE_PR_NAME=$(printf "%s" "$GITHUB_HEAD_REF" | tr '/' '-')
DEST_DIR="target_bench_repo/data/$SAFE_PR_NAME/$(date +%s)" DEST_DIR="target_bench_repo/data/$SAFE_PR_NAME/$(date +%s)"
mkdir -p "$DEST_DIR" mkdir -p "$DEST_DIR"