From 3a8e7d577fdc356c02572455bb04b3cb632535d8 Mon Sep 17 00:00:00 2001 From: David-Emmanuel DIVERNOIS Date: Wed, 4 Dec 2024 14:28:57 +0100 Subject: [PATCH] Fix release workflow --- .github/workflows/release.yml | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index fefb367..89f381a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,13 +24,8 @@ jobs: - run: | git config --global user.name github-actions git config --global user.email github-actions@github.com - - name: npm version - if: inputs.version != 'doconly' - run: | - npm version ${{ inputs.version }} - git add package.json package-lock.json - git commit -m v${{ inputs.version }} - git tag v${{ inputs.version }} + - if: inputs.version != 'doconly' + run: npm version ${{ inputs.version }} - run: git show HEAD - run: npm run build - run: npm run docs