From 28024da6f9aee577c99f606eb52b322b2cb5c81f Mon Sep 17 00:00:00 2001 From: Vlad Date: Tue, 16 Jan 2024 15:17:07 +0100 Subject: [PATCH] fix: main preview assets static path (#776) Co-authored-by: Vladislav Kharitonov --- .github/workflows/main-preview.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main-preview.yml b/.github/workflows/main-preview.yml index 8f982e6ec..305b7c948 100644 --- a/.github/workflows/main-preview.yml +++ b/.github/workflows/main-preview.yml @@ -5,7 +5,7 @@ on: branches: [main] env: - PREVIEW_DEST_PATH: /page-constructor/main/ + PREVIEW_DEST_PATH: /page-constructor jobs: main: @@ -30,6 +30,6 @@ jobs: uses: gravity-ui/preview-upload-to-s3-action@v1 with: src-path: storybook-static - dest-path: ${{ env.PREVIEW_DEST_PATH }} + dest-path: /page-constructor/main/ s3-key-id: ${{ secrets.STORYBOOK_S3_KEY_ID }} s3-secret-key: ${{ secrets.STORYBOOK_S3_SECRET_KEY }}