diff options
author | Richard Mortier <mor1@users.noreply.github.com> | 2019-06-21 16:00:20 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-06-21 16:00:20 +0100 |
commit | bf75c1d628b5ec00a02e211ca4920da356389a9e (patch) | |
tree | 7a312bdcf7e1e33908b342c5060341bcff7bfc66 | |
parent | 51508033326feaae0d16ab8e851116d7874db27c (diff) | |
parent | 5856b3bdba976fa66ae3be2e6386407b51c5b64e (diff) | |
download | docker-abuild-bf75c1d628b5ec00a02e211ca4920da356389a9e.tar.bz2 docker-abuild-bf75c1d628b5ec00a02e211ca4920da356389a9e.tar.xz |
Merge pull request #26 from tcely/patch-2
drone: do not publish for pull requests
-rw-r--r-- | .drone.jsonnet | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/.drone.jsonnet b/.drone.jsonnet index 165c092..decc298 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -29,6 +29,9 @@ local pipeline(arch, darch, tags) = { tags: '%s-%s' % [std.strReplace(tag, 'v', ''), arch], dockerfile: 'Dockerfiles/%s/%s/Dockerfile' % [tag, arch], }, + when: { + branch: ['master'], + }, depends_on: ['dockerfiles'], } for tag in tags |