Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Comment on lines 44 to +48
git push --follow-tags
Comment on lines 46 to +49
Comment on lines +47 to +49

- name: Publish to npm
run: npm publish --access public
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "@utkarsh232005/kdm-cli",
"name": "kdm-cli",
"version": "1.1.2",
Comment on lines 1 to 3
"description": "Kubernetes and Docker Monitoring CLI",
"type": "module",
Expand Down