21 lines
479 B
YAML
21 lines
479 B
YAML
# CI/CD Pipeline for test-comp-3626
|
|
# Components will add their build steps below the marker
|
|
|
|
clone:
|
|
git:
|
|
image: woodpeckerci/plugin-git
|
|
settings:
|
|
depth: 1
|
|
|
|
steps:
|
|
# COMPONENT_STEPS_BELOW - Do not remove this marker
|
|
|
|
verify:
|
|
image: bitnami/kubectl:latest
|
|
commands:
|
|
- echo "Pipeline complete for test-comp-3626"
|
|
- kubectl get deployments -n projects -l app=test-comp-3626 --no-headers || true
|
|
when:
|
|
branch: main
|
|
event: push
|