From 093553128506538be235b9504cb5c17fc3da1407 Mon Sep 17 00:00:00 2001 From: Jason Schroeder Date: Wed, 16 Nov 2022 08:34:08 -0800 Subject: [PATCH] fix: build before packaging 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:` --- .github/workflows/nodejs.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 5b18ba6a0..9a41ab972 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 }}