23 lines
433 B
YAML
23 lines
433 B
YAML
matrix:
|
|
APP:
|
|
- ui
|
|
- api
|
|
- abstraction
|
|
- rules
|
|
|
|
steps:
|
|
build:
|
|
image: plugins/kaniko
|
|
settings:
|
|
repo: ${FORGE_NAME}/${CI_REPO}/${APP}
|
|
registry: http://dockerhub-cache.gitea.svc.cluster.local:5000
|
|
username: ""
|
|
password: ""
|
|
auto_tag: true
|
|
dockerfile: apps/${APP}/Dockerfile
|
|
when:
|
|
event: [push, tag]
|
|
ref:
|
|
exclude:
|
|
- refs/tags/*-configchange
|