We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57e7e5b commit 84a2305Copy full SHA for 84a2305
1 file changed
.github/workflows/web-deploy.yml
@@ -29,11 +29,11 @@ jobs:
29
node-version: 22
30
cache: pnpm
31
- run: pnpm install --frozen-lockfile
32
- - run: pnpm --filter @kostech/web build
+ - name: Build & Deploy to Cloudflare Pages
33
+ run: |
34
+ cd apps/web
35
+ pnpm build
36
+ pnpm exec wrangler pages deploy dist --project-name=kostech-web --branch=main --account-id=${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
37
env:
38
NUXT_PUBLIC_SITE_URL: https://kostech.md
- # wrangler is already in devDependencies - make sure it's on PATH
- - name: Deploy to Cloudflare Pages
- run: pnpm --filter @kostech/web exec wrangler pages deploy apps/web/dist --project-name=kostech-web --branch=main --account-id=${{ secrets.CLOUDFLARE_ACCOUNT_ID }}
- env:
39
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}
0 commit comments