From 58a29da7078e413623e51858c2a1f65cff2748f0 Mon Sep 17 00:00:00 2001 From: Alexander Kovrigin Date: Thu, 9 Nov 2023 17:48:26 +0100 Subject: [PATCH] [web] fix build folder --- .github/workflows/web.yml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/web.yml b/.github/workflows/web.yml index d19c744..58f95f7 100644 --- a/.github/workflows/web.yml +++ b/.github/workflows/web.yml @@ -19,11 +19,12 @@ jobs: - name: Install dependencies run: | + cd web npm install -g pnpm pnpm install - name: Build - run: npm run build + run: cd web && npm run build deploy: runs-on: ubuntu-latest @@ -38,7 +39,7 @@ jobs: # - name: Deploy to Cloudflare Pages # uses: cloudflare/cloudflare-pages-deploy-action@main # with: -# script: npm run build -# directory: dist +# script: cd web && npm run build +# directory: web/dist # token: ${{ secrets.CLOUDFLARE_API_TOKEN }} # site: en2ru