diff options
author | Bo-Yi Wu <appleboy.tw@gmail.com> | 2017-11-01 03:48:40 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-11-01 03:48:40 -0500 |
commit | dc6dad87d46930d21cd6daa18a41861f8e65c11b (patch) | |
tree | 95ef92d70d41aeb293d238a120c81c49ec2cf4f2 | |
parent | e9595a962ba5f9a9c5b53b9318bc56b39a00b616 (diff) | |
download | gitea-dc6dad87d46930d21cd6daa18a41861f8e65c11b.tar.gz gitea-dc6dad87d46930d21cd6daa18a41861f8e65c11b.zip |
add remote name for git push. (#2816)
Signed-off-by: Bo-Yi Wu <appleboy.tw@gmail.com>
-rw-r--r-- | .drone.yml | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/.drone.yml b/.drone.yml index 35c7b13771..968f18b8c9 100644 --- a/.drone.yml +++ b/.drone.yml @@ -20,18 +20,19 @@ pipeline: when: event: [ push ] branch: [ master ] - + git_push: image: appleboy/drone-git-push pull: true secrets: [ git_push_ssh_key ] + remote_name: origin force: false commit: true commit_message: "[skip ci] Updated translations via Crowdin" when: event: [ push ] branch: [ master ] - + pre-build: image: webhippie/nodejs:latest pull: true @@ -40,7 +41,7 @@ pipeline: - make stylesheets-check when: event: [ push, tag, pull_request ] - + build: image: webhippie/golang:edge pull: true |