From 8cd3416722e392166c7a03cf33fb8367d8349a89 Mon Sep 17 00:00:00 2001 From: gregorylavery <100631366+gregorylavery@users.noreply.github.com> Date: Tue, 29 Oct 2024 09:12:24 -0700 Subject: [PATCH] Get the version update working for NPM. --- .github/workflows/npm-publish.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/npm-publish.yml b/.github/workflows/npm-publish.yml index 605a505..976e08a 100644 --- a/.github/workflows/npm-publish.yml +++ b/.github/workflows/npm-publish.yml @@ -16,7 +16,7 @@ jobs: with: node-version: 20 - run: npm ci - - run: npm version patch + #- run: npm test publish-npm: needs: build @@ -27,7 +27,9 @@ jobs: with: node-version: 20 registry-url: https://registry.npmjs.org/ - - run: npm ci + - run: + npm version minor -m "[ci skip] v%s" + #- run: npm ci - run: npm publish env: NODE_AUTH_TOKEN: ${{secrets.npm_token}}