24 lines
598 B
YAML
24 lines
598 B
YAML
steps:
|
|
docker:
|
|
image: woodpeckerci/plugin-kaniko
|
|
settings:
|
|
registry: registry.threesix.ai
|
|
repo: "foundary-test-1770625554"
|
|
tags:
|
|
- latest
|
|
- ${CI_COMMIT_SHA:0:8}
|
|
cache: true
|
|
skip-tls-verify: true
|
|
failure: ignore
|
|
when:
|
|
- event: push
|
|
branch: main
|
|
|
|
deploy:
|
|
image: bitnami/kubectl:latest
|
|
commands:
|
|
- kubectl set image deployment/foundary-test-1770625554 foundary-test-1770625554=registry.threesix.ai/foundary-test-1770625554:${CI_COMMIT_SHA:0:8} -n projects
|
|
when:
|
|
- event: push
|
|
branch: main
|