fixing pipeline
All checks were successful
Build Pull Request / Build Pull Request Archive (pull_request) Successful in 9s
Build Pull Request / Capture Pull Request Screenshots (pull_request) Successful in 55s
Build Pull Request / Publish Pull Request Screenshot Preview (pull_request) Successful in 1s

This commit is contained in:
2026-07-10 22:53:05 -03:00
parent c3addb6d02
commit 8b5c52dd1e
2 changed files with 9 additions and 2 deletions

View File

@@ -36,6 +36,7 @@ jobs:
- name: Prepare archive
run: |
mkdir vision-start
mv dist vision-start/
mv extension vision-start/
mv manifest.json vision-start/
@@ -76,7 +77,13 @@ jobs:
name: pr-release-zip
- name: Unpack build artifact
run: unzip -o -q ${{ env.ARCHIVE_NAME }}
run: |
unzip -o -q ${{ env.ARCHIVE_NAME }}
if [ ! -d dist ]; then
echo "The build artifact does not contain dist/."
unzip -l ${{ env.ARCHIVE_NAME }}
exit 1
fi
- name: Install Playwright Chromium
run: npx playwright install --with-deps chromium