Compare commits

..

5 Commits

Author SHA1 Message Date
e85a2c6e93 🚀RELEASE 3.15.1 [CI SKIP] 2022-05-04 19:02:01 +00:00
131494a7d8 Fixed repo
All checks were successful
continuous-integration/drone/push Build is passing
2022-05-04 21:00:35 +02:00
72805144ed Defaulted git config upstream
Some checks failed
continuous-integration/drone/push Build was killed
2022-05-04 20:57:15 +02:00
ae5fde95d9 Manual git pull
Some checks failed
continuous-integration/drone/push Build was killed
2022-05-04 20:55:10 +02:00
673c294e22 Updated git requirements
Some checks failed
continuous-integration/drone/push Build was killed
2022-05-04 20:53:12 +02:00
2 changed files with 9 additions and 8 deletions

View File

@@ -38,10 +38,10 @@ steps:
commands: commands:
- apk add git - apk add git
- git config --global push.default current - git config --global push.default current
- git branch --set-upstream-to=origin/main main
- yarn - yarn
- yarn release - yarn release
- git add package.json - git pull
- 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]
@@ -50,7 +50,7 @@ steps:
author_email: bot@odit.services author_email: bot@odit.services
followtags: true followtags: true
branch: main branch: main
remote: git@git.odit.services:lfk/scanclient-live.git remote: git@git.odit.services:odit/nginx-brotli.git
skip_verify: true skip_verify: true
ssh_key: ssh_key:
from_secret: git_ssh from_secret: git_ssh

View File

@@ -1,6 +1,6 @@
{ {
"name": "nginx-brotli", "name": "nginx-brotli",
"version": "3.15.0", "version": "3.15.1",
"description": "NGINX Base Image feat. brotli", "description": "NGINX Base Image feat. brotli",
"repository": { "repository": {
"type": "git", "type": "git",
@@ -11,16 +11,17 @@
"release-it": "^15.0.0" "release-it": "^15.0.0"
}, },
"scripts": { "scripts": {
"release":"release-it --patch --ci" "release": "release-it --patch --ci"
}, },
"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}"
}, },
@@ -28,4 +29,4 @@
"publish": false "publish": false
} }
} }
} }