[testing workflows] Fix artifacts path for blocks e2e (#50432)

This commit is contained in:
Adrian Moldovan 2024-08-07 09:08:30 +01:00 committed by GitHub
parent 1693fc7694
commit 81e5d24d3d
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 4 additions and 1 deletions

View File

@ -171,7 +171,10 @@ jobs:
# https://github.com/actions/upload-artifact/issues/176 # https://github.com/actions/upload-artifact/issues/176
env: env:
ARTIFACTS_PATH: '${{ matrix.projectPath }}/${{ matrix.report.resultsPath }}' ARTIFACTS_PATH: '${{ matrix.projectPath }}/${{ matrix.report.resultsPath }}'
run: echo "ARTIFACTS_PATH=$(realpath $ARTIFACTS_PATH)" >> $GITHUB_ENV run: |
# first runs will probably not have the directory, so we need to create it so that realpath doesn't fail
mkdir -p $ARTIFACTS_PATH
echo "ARTIFACTS_PATH=$(realpath $ARTIFACTS_PATH)" >> $GITHUB_ENV
- name: 'Download Playwright last run info' - name: 'Download Playwright last run info'
id: 'download-last-run-info' id: 'download-last-run-info'