fix(docker): always build on tag

!68 fixes #37
This commit is contained in:
2023-09-02 14:43:47 +09:30
parent 975de7aca2
commit 359c664d97

View File

@ -107,6 +107,13 @@ variables:
- '{dockerfile,dockerfile.j2}'
when: always
- if: # condition_git_tag
$CI_COMMIT_TAG != null &&
$CI_COMMIT_BRANCH == null
exists:
- '{dockerfile,dockerfile.j2}'
when: on_success
- if: # condition_dev_branch_push
$CI_COMMIT_BRANCH == "development" &&
$CI_PIPELINE_SOURCE == "push"