From de0f9917f1a600c5f39793ab607a323a2ecb5458 Mon Sep 17 00:00:00 2001 From: Bryan Jonker <65776851+bryanjonker-illinois@users.noreply.github.com> Date: Wed, 21 Aug 2024 10:58:47 -0500 Subject: [PATCH] Update publish_npm.yml Adding build script to create /dist files --- .github/workflows/publish_npm.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/publish_npm.yml b/.github/workflows/publish_npm.yml index 99e0d43..529d9af 100644 --- a/.github/workflows/publish_npm.yml +++ b/.github/workflows/publish_npm.yml @@ -13,6 +13,9 @@ jobs: with: node-version: '22.x' registry-url: 'https://registry.npmjs.org' + - run: npm install + - run: npm rebuild + - run: npm run-script build - name: Install to npm run: npm publish --access public env: