From 3c8500008d9302b7d68120c89167dc64d0be6936 Mon Sep 17 00:00:00 2001 From: Elias Schneider Date: Sat, 14 Sep 2024 18:15:36 +0200 Subject: [PATCH] chore: fix wrong versioning for minor releases --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index d6355ff..2197f61 100644 --- a/package.json +++ b/package.json @@ -6,7 +6,7 @@ "lint": "cd frontend && npm run lint && cd ../backend && npm run lint", "version": "conventional-changelog -p conventionalcommits -i CHANGELOG.md -s && git add CHANGELOG.md", "release:patch": "cd backend && npm version patch --commit-hooks false && cd ../frontend && npm version patch --commit-hooks false && cd .. && git add . && npm version patch --force -m 'release: %s' && git push && git push --tags", - "release:minor": "cd backend && npm version minor --commit-hooks false && cd ../frontend && npm version minor --commit-hooks false && cd .. && git add . && npm version major --force -m 'release: %s' && git push && git push --tags", + "release:minor": "cd backend && npm version minor --commit-hooks false && cd ../frontend && npm version minor --commit-hooks false && cd .. && git add . && npm version minor --force -m 'release: %s' && git push && git push --tags", "deploy:dev": "docker buildx build --push --tag stonith404/pingvin-share:development --platform linux/amd64,linux/arm64 ." }, "devDependencies": {