From 95e0174ab2de5a0e9b4255c5db37af761eba3426 Mon Sep 17 00:00:00 2001 From: Abdelrahman Awad Date: Sun, 16 Feb 2025 13:49:43 +0200 Subject: [PATCH] chore(ci): update the command to build before publish --- .github/workflows/pkg-pr-new.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pkg-pr-new.yml b/.github/workflows/pkg-pr-new.yml index 8ed88d73..1dfe2b94 100644 --- a/.github/workflows/pkg-pr-new.yml +++ b/.github/workflows/pkg-pr-new.yml @@ -19,8 +19,10 @@ jobs: with: node-version: 22 cache: 'pnpm' - - name: Install dependencies run: pnpm install + - name: Build + run: pnpm build - - run: pnpx pkg-pr-new publish './packages/*' + - name: Publish + run: pnpx pkg-pr-new publish './packages/*'