From 642126e13b9d42cdc95bc5169d8179a293f523e2 Mon Sep 17 00:00:00 2001 From: Derek Higgins Date: Mon, 13 Oct 2025 17:55:55 +0100 Subject: [PATCH] fix: record job checking wrong directory (#3799) Fixed CI job to check the correct directory for file changes Artifacts are now stored in multiple directories not just ./tests/integration/recordings Signed-off-by: Derek Higgins --- .github/actions/run-and-record-tests/action.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/actions/run-and-record-tests/action.yml b/.github/actions/run-and-record-tests/action.yml index d240381c5..a5aa31af4 100644 --- a/.github/actions/run-and-record-tests/action.yml +++ b/.github/actions/run-and-record-tests/action.yml @@ -66,11 +66,11 @@ runs: shell: bash run: | echo "Checking for recording changes" - git status --porcelain tests/integration/recordings/ + git status --porcelain tests/integration/ - if [[ -n $(git status --porcelain tests/integration/recordings/) ]]; then + if [[ -n $(git status --porcelain tests/integration/) ]]; then echo "New recordings detected, committing and pushing" - git add tests/integration/recordings/ + git add tests/integration/ git commit -m "Recordings update from CI (suite: ${{ inputs.suite }})" git fetch origin ${{ github.ref_name }}