All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
21 lines
427 B
YAML
21 lines
427 B
YAML
when:
|
|
branch: main
|
|
event: push
|
|
|
|
steps:
|
|
- name: build-and-push
|
|
image: gcr.io/kaniko-project/executor:debug
|
|
environment:
|
|
DOCKER_USERNAME:
|
|
from_secret: docker_username
|
|
DOCKER_PASSWORD:
|
|
from_secret: docker_password
|
|
entrypoint: ["/busybox/sh"]
|
|
commands:
|
|
- echo hello from kaniko debug
|
|
|
|
- name: update-manifests
|
|
image: alpine
|
|
commands:
|
|
- echo hello from alpine
|