From 588af3a236d4c13f8dd0f6c87785b7eb68a40aa9 Mon Sep 17 00:00:00 2001 From: Patrick Cate Date: Sat, 20 Apr 2024 23:12:13 -0400 Subject: [PATCH] fix: add semantic release build commands --- .github/workflows/release.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6bcf31e..5009152 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -39,6 +39,12 @@ jobs: - name: Verify the integrity of installed dependencies run: npm audit signatures + - name: Build playground + run: npm run dev:prepare + + - name: Build module + run: npm run prepack + - name: Release env: GITHUB_TOKEN: ${{ secrets.SEMANTIC_RELEASE_GH_TOKEN }}