From 68dba89bf5df49cc0834cb08073162737b64ac32 Mon Sep 17 00:00:00 2001 From: Vitaly Turovsky Date: Mon, 9 Dec 2024 09:32:37 +0300 Subject: [PATCH] ci: update paths for PR and commit redirect index.html in preview workflow --- .github/workflows/preview.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index 2001d51d..4b66ac9f 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -68,12 +68,12 @@ jobs: cp -r prismarine-viewer/dist/* .vercel/output/static/playground/ - name: Write pr redirect index.html run: | - mkdir -p .vercel/output/pr - echo "" > .vercel/output/pr/index.html + mkdir -p .vercel/output/static/pr + echo "" > .vercel/output/static/pr/index.html - name: Write commit redirect index.html run: | - mkdir -p .vercel/output/commit - echo "" > .vercel/output/commit/index.html + mkdir -p .vercel/output/static/commit + echo "" > .vercel/output/static/commit/index.html - name: Download Generated Sounds map run: node scripts/downloadSoundsMap.mjs - name: Deploy Project Artifacts to Vercel