From 76a2a1929ff44dda7e6298c5875f9d5846bf5d2d Mon Sep 17 00:00:00 2001 From: 0xawaz Date: Tue, 3 Dec 2024 16:43:16 +0100 Subject: [PATCH] ci: fix path --- .github/workflows/e2e-test.yaml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/e2e-test.yaml b/.github/workflows/e2e-test.yaml index 27ccec5..d22a248 100644 --- a/.github/workflows/e2e-test.yaml +++ b/.github/workflows/e2e-test.yaml @@ -27,7 +27,8 @@ jobs: - name: Execute run-everything.sh id: run_script run: | - ./coprocessor/scripts/run_everything.sh 2>&1 | tee script_output.log + cd ./coprocessor/ + ./scripts/run_everything.sh 2>&1 | tee script_output.log echo "exit_code=${PIPESTATUS[0]}" >> $GITHUB_OUTPUT - name: Upload Script Output