Compare commits

...

2 Commits

Author SHA1 Message Date
d0d24eb332
Added custom commit logic
Some checks reported errors
continuous-integration/drone/push Build was killed
2022-05-04 20:51:32 +02:00
3aaefd971b
Disable all git features 2022-05-04 20:51:00 +02:00
2 changed files with 4 additions and 2 deletions

View File

@ -40,6 +40,8 @@ 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]

View File

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