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 }}