From 47883aab1782084bd2c25d91378d75c44c4c87f9 Mon Sep 17 00:00:00 2001 From: Jason Schroeder Date: Wed, 16 Nov 2022 23:08:58 -0800 Subject: [PATCH] fix: build before packaging (#262) The releases were not getting `yarn build` before packaging, so the `dist/` folder was empty. I'd normally call this a `build:` conventional commit, but seeing as the build is quite broken, we'll go with a `fix:` Co-authored-by: Navateja Alagam --- .github/workflows/nodejs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 5b18ba6a..9a41ab97 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -62,6 +62,7 @@ jobs: registry-url: 'https://registry.npmjs.org' - run: yarn install --frozen-lockfile + - run: yarn build - run: yarn run semantic-release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}