From 6b05a9a2c4ec50f87756dde132b413a2047b768b Mon Sep 17 00:00:00 2001 From: Sairaj Jawalikar <65067289+s41r4j@users.noreply.github.com> Date: Fri, 20 Jun 2025 00:05:40 +0530 Subject: [PATCH] Update release.yml --- .github/workflows/release.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b1a7104..0c8fa4b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -25,7 +25,10 @@ jobs: - name: Run tests run: npm test + - name: Version patch + run: npm version patch + - name: Publish to npm - run: npm publish + run: npm publish --access public env: NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}