From dacb2d0b1329b0bc074327a2919e65a899aea6e8 Mon Sep 17 00:00:00 2001 From: Emmanuel Venisse Date: Sat, 17 Jan 2026 19:38:36 +0100 Subject: [PATCH] fix: add missing semantic-release plugins to workflow - Add @semantic-release/commit-analyzer to extra_plugins - Add @semantic-release/release-notes-generator to extra_plugins - These plugins are required by .releaserc configuration - Fixes 'semanticRelease is not a function' error --- .github/workflows/publish.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 1b0cc2f..0c857f5 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -46,9 +46,11 @@ jobs: semantic_version: 25.0.2 branch: main extra_plugins: | - @semantic-release/github - @semantic-release/git + @semantic-release/commit-analyzer + @semantic-release/release-notes-generator @semantic-release/npm + @semantic-release/git + @semantic-release/github env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} NPM_TOKEN: ${{ secrets.NPM_TOKEN }}