From 16529e049cbb67ce59c795b72cb448f720a8a10a Mon Sep 17 00:00:00 2001 From: Boaz Poolman Date: Wed, 6 Nov 2024 14:58:06 +0100 Subject: [PATCH] fix: actually build the plugin during the publish workflow --- .github/workflows/publish.yml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index debba2c..332d32d 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -17,6 +17,8 @@ jobs: registry-url: 'https://registry.npmjs.org/' - name: Install dependencies run: yarn install --frozen-lockfile + - name: Build the plugin + run: yarn build - name: Get the release tag version id: get_version run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//}