From 9ad84da70239743f33595ba5c0a7fe8381fce670 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Fri, 15 Mar 2024 22:30:00 -0400 Subject: [PATCH] fix another typo --- .github/workflows/actions/test-core-screenshot/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/actions/test-core-screenshot/action.yml b/.github/workflows/actions/test-core-screenshot/action.yml index b1fe9fc191..816584ea50 100644 --- a/.github/workflows/actions/test-core-screenshot/action.yml +++ b/.github/workflows/actions/test-core-screenshot/action.yml @@ -76,9 +76,9 @@ runs: git add src/\*.png --force mkdir updated-screenshots cd ../ && rsync -R --progress $(git diff --name-only --cached) core/updated-screenshots - if [ -d packages/core/updated-screenshots/core ]; then + if [ -d core/updated-screenshots/core ]; then echo "hasUpdatedScreenshots=$(echo 'true')" >> $GITHUB_OUTPUT - cd packages/core/updated-screenshots + cd core/updated-screenshots zip -q -r ../../UpdatedScreenshots-${{ inputs.shard }}-${{ inputs.totalShards }}.zip packages/core fi shell: bash