From d6b4a1776cb527b863381bfa87cef63bf4813eae Mon Sep 17 00:00:00 2001 From: Nicolai Ort Date: Tue, 13 Apr 2021 18:51:21 +0200 Subject: [PATCH] Workaround for git push issue ref #1 --- .drone.yml | 15 ++++++++++++--- 1 file changed, 12 insertions(+), 3 deletions(-) diff --git a/.drone.yml b/.drone.yml index 6230495..af4e93a 100644 --- a/.drone.yml +++ b/.drone.yml @@ -57,11 +57,20 @@ steps: image: node:alpine commands: - npm --no-git-tag-version version ${SOURCE_TAG} - - name: commit & tag + - name: push new version to repo + image: appleboy/drone-git-push + settings: + commit: true + commit_message: 🚀New package version ${SOURCE_TAG} [CI SKIP] + author_email: bot@odit.services + followtags: false + remote: git@git.odit.services:lfk/scanclient-electron.git + skip_verify: true + ssh_key: + from_secret: git_ssh + - name: tag image: alpine/git commands: - - git add . - - git commit -m "🚀New package version ${SOURCE_TAG} [CI SKIP]" - git tag ${SOURCE_TAG} -a -m "Release ${SOURCE_TAG}" - name: push to repo image: appleboy/drone-git-push