32 lines
743 B
YAML
32 lines
743 B
YAML
pipeline:
|
|
only-buid:
|
|
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:
|
|
environment:
|
|
exclude: production
|
|
|
|
build-and-push:
|
|
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
|
|
environment:
|
|
- production |