From d304adf0cc26ed08a5fe4162159a3cec5c3700c3 Mon Sep 17 00:00:00 2001 From: mazen-r Date: Mon, 21 Oct 2024 12:09:11 +0300 Subject: [PATCH] fix workflow syntax --- .github/workflows/publish.yaml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yaml b/.github/workflows/publish.yaml index c6046de..e1090fc 100644 --- a/.github/workflows/publish.yaml +++ b/.github/workflows/publish.yaml @@ -17,8 +17,9 @@ jobs: uses: actions/setup-node@v4 with: node-version: 20 - run: npm install - run: npm build + run: | + npm install + npm run build - name: Publish to NPM run: |