22 lines
531 B
YAML
22 lines
531 B
YAML
# CI/CD Pipeline for feat-dev-e2e-test
|
|
# 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 the marker above - component steps are inserted here
|
|
|
|
verify:
|
|
image: bitnami/kubectl:latest
|
|
commands:
|
|
- echo "Pipeline complete for feat-dev-e2e-test"
|
|
- kubectl get deployments -n projects -l app=feat-dev-e2e-test --no-headers || true
|
|
when:
|
|
branch: main
|
|
event: push
|