From 1db969ffd9b1318ef80cead40c4fab04efe0a884 Mon Sep 17 00:00:00 2001 From: utkarsh patrikar Date: Mon, 11 May 2026 01:36:15 +0530 Subject: [PATCH 1/2] fix: add git pull --rebase to publish workflow --- .github/workflows/publish.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 80de26e..697517b 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -44,7 +44,9 @@ jobs: run: "npm version ${{ github.event.inputs.release_type }} -m 'chore: release v%s'" - name: Push changes and tags - run: git push --follow-tags + run: | + git pull --rebase origin main + git push --follow-tags - name: Publish to npm run: npm publish --access public From edda872d41fb26004eebf5b870ec57dd06f335f7 Mon Sep 17 00:00:00 2001 From: utkarsh patrikar Date: Mon, 11 May 2026 01:42:42 +0530 Subject: [PATCH 2/2] fix: change package name to kdm-cli to match npm registry --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index b5fb602..754cb09 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "@utkarsh232005/kdm-cli", + "name": "kdm-cli", "version": "1.1.0", "description": "Kubernetes and Docker Monitoring CLI", "type": "module",