[testing workflows] Fix artifacts path for blocks e2e (#50432)
This commit is contained in:
parent
1693fc7694
commit
81e5d24d3d
|
@ -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'
|
||||||
|
|
Loading…
Reference in New Issue