diff options
author | jp <jp+pleroma@supplntr.io> | 2020-01-15 16:23:43 -0500 |
---|---|---|
committer | jp <jp+pleroma@supplntr.io> | 2020-01-15 16:23:43 -0500 |
commit | 4d19f38753353ab804406bc8a8c11fc57de74c66 (patch) | |
tree | e69fb76459fd1b65a29d4b43713f6d550a699289 /.gitlab-ci.yml | |
parent | cc4c3255fe052b69e1f0115bfd5d2936c669a385 (diff) | |
download | pleroma-4d19f38753353ab804406bc8a8c11fc57de74c66.tar.gz |
update `only:` for release/ branch regex matching. and to avoid running image builds on unnecessary forks
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 3dff6237a..25e002980 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -293,7 +293,9 @@ docker: tags: - dind only: - - develop + - develop@pleroma/pleroma + - /^maint/.*$/@pleroma/pleroma + - /^ci\/.*$/@jp/pleroma docker-stable: stage: docker @@ -312,4 +314,5 @@ docker-stable: tags: - dind only: - - stable + - stable@pleroma/pleroma + - /^release/.*$/@pleroma/pleroma |