Skip to content

Commit

Permalink
[web] fix build folder
Browse files Browse the repository at this point in the history
  • Loading branch information
waleko committed Nov 9, 2023
1 parent 3afb4ee commit 58a29da
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/web.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 58a29da

Please sign in to comment.