Updated git requirements
Some checks reported errors
continuous-integration/drone/push Build was killed

This commit is contained in:
Nicolai Ort 2022-05-04 20:53:12 +02:00
parent d0d24eb332
commit 673c294e22
Signed by: niggl
GPG Key ID: 13AFA55AF62F269F
2 changed files with 3 additions and 4 deletions

View File

@ -40,8 +40,6 @@ steps:
- git config --global push.default current - git config --global push.default current
- yarn - yarn
- yarn release - yarn release
- git add package.json
- git commit -m ${DRONE_TAG}
- name: push to repo - name: push to repo
image: appleboy/drone-git-push image: appleboy/drone-git-push
depends_on: [bump_patch] depends_on: [bump_patch]

View File

@ -15,12 +15,13 @@
}, },
"release-it": { "release-it": {
"git": { "git": {
"commit": false, "commit": true,
"requireCleanWorkingDir": false, "requireCleanWorkingDir": false,
"requireUpstream": false,
"requireBranch": "main", "requireBranch": "main",
"commitMessage": "🚀RELEASE ${version} [CI SKIP]", "commitMessage": "🚀RELEASE ${version} [CI SKIP]",
"push": false, "push": false,
"tag": false, "tag": true,
"tagName": "${version}", "tagName": "${version}",
"tagAnnotation": "${version}" "tagAnnotation": "${version}"
}, },