From b03e5127ff4080c142e7c82034b239bdd8e190bb Mon Sep 17 00:00:00 2001 From: Dmitri Smirnov Date: Fri, 28 Jun 2024 15:11:05 -0400 Subject: [PATCH] fix: install npm + plugin --- .github/workflows/release.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 2817823..2359b90 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -19,6 +19,13 @@ jobs: with: fetch-depth: 0 # Important for Semantic Release to analyze all commits + - name: Setup Node.js + uses: actions/setup-node@v3 + with: + node-version: "lts/*" + + - run: npm install @semantic-release/exec -D + - name: Create semantic release uses: cycjimmy/semantic-release-action@v4 id: semantic