From 673c294e22ccc4d4aedbb428bd8b0fd31d0a1461 Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Wed, 4 May 2022 20:53:12 +0200 Subject: [PATCH] Updated git requirements --- .drone.yml | 2 -- package.json | 5 +++-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/.drone.yml b/.drone.yml index e3c9d7b..1c80bf2 100644 --- a/.drone.yml +++ b/.drone.yml @@ -40,8 +40,6 @@ steps: - git config --global push.default current - yarn - yarn release - - git add package.json - - git commit -m ${DRONE_TAG} - name: push to repo image: appleboy/drone-git-push depends_on: [bump_patch] diff --git a/package.json b/package.json index 7eef62b..28d00ff 100644 --- a/package.json +++ b/package.json @@ -15,12 +15,13 @@ }, "release-it": { "git": { - "commit": false, + "commit": true, "requireCleanWorkingDir": false, + "requireUpstream": false, "requireBranch": "main", "commitMessage": "🚀RELEASE ${version} [CI SKIP]", "push": false, - "tag": false, + "tag": true, "tagName": "${version}", "tagAnnotation": "${version}" },