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}" },