All checks were successful
ci/woodpecker/push/build Pipeline was successful
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
31 lines
720 B
YAML
31 lines
720 B
YAML
when:
|
|
- branch: main
|
|
event: push
|
|
|
|
steps:
|
|
- name: build-backend
|
|
image: woodpeckerci/plugin-kaniko
|
|
settings:
|
|
registry: git.mikhailkilin.ru
|
|
repo: killingdruid/bbb-backend
|
|
dockerfile: backend/Dockerfile
|
|
context: backend
|
|
tags: latest
|
|
username:
|
|
from_secret: docker_username
|
|
password:
|
|
from_secret: docker_password
|
|
|
|
- name: build-frontend
|
|
image: woodpeckerci/plugin-kaniko
|
|
settings:
|
|
registry: git.mikhailkilin.ru
|
|
repo: killingdruid/bbb-frontend
|
|
dockerfile: frontend/Dockerfile
|
|
context: frontend
|
|
tags: latest
|
|
username:
|
|
from_secret: docker_username
|
|
password:
|
|
from_secret: docker_password
|