37 lines
791 B
YAML
37 lines
791 B
YAML
name: Build Docker
|
|
kind: pipeline
|
|
type: docker
|
|
steps:
|
|
|
|
- name: Only build image
|
|
image: plugins/docker
|
|
settings:
|
|
username:
|
|
from_secret: docker_username
|
|
password:
|
|
from_secret: docker_password
|
|
repo: harbor.sebclem.fr/sebclem/cnc-speed-calculator
|
|
registry: harbor.sebclem.fr
|
|
tags: latest
|
|
dry_run: true
|
|
when:
|
|
target:
|
|
exclude:
|
|
- production
|
|
|
|
- name: Build and Push docker
|
|
image: plugins/docker
|
|
settings:
|
|
username:
|
|
from_secret: docker_username
|
|
password:
|
|
from_secret: docker_password
|
|
repo: harbor.sebclem.fr/sebclem/cnc-speed-calculator
|
|
registry: harbor.sebclem.fr
|
|
tags: latest
|
|
when:
|
|
branch:
|
|
- main
|
|
target:
|
|
- production
|