From 2687c245fdd894f4005ca0be49526b66b2d54505 Mon Sep 17 00:00:00 2001 From: Sean Sica <23294618+seansica@users.noreply.github.com> Date: Fri, 18 Oct 2024 16:25:55 -0400 Subject: [PATCH] fix(ci): replace cycjimmy/semantic-release-action@v4 plugin with manual commands --- .github/workflows/ci.yml | 20 +++++++++++++------- 1 file changed, 13 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index aaa5b09..a8bc276 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -89,13 +89,19 @@ jobs: node-version: '22.x' registry-url: 'https://npm.pkg.github.com' scope: '@mitre-attack' + # - name: Semantic Release + # uses: cycjimmy/semantic-release-action@v4 + # with: + # extra_plugins: | + # @semantic-release/commit-analyzer + # @semantic-release/release-notes-generator + # @semantic-release/npm + # @semantic-release/github + # env: + # GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + - name: Verify the integrity of provenance attestations and registry signatures for installed dependencies + run: npm audit signatures - name: Semantic Release - uses: cycjimmy/semantic-release-action@v4 - with: - extra_plugins: | - @semantic-release/commit-analyzer - @semantic-release/release-notes-generator - @semantic-release/npm - @semantic-release/github + run: npx semantic-release env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}