# CI/CD Pipeline for tree-test-1770067284 # Components will add their build steps below the marker clone: git: image: woodpeckerci/plugin-git settings: depth: 1 steps: # COMPONENT_STEPS_BELOW # Woodpecker CI step for landing Astro app # Add this step to your .woodpecker.yml build-landing: image: woodpeckerci/plugin-kaniko settings: registry: registry.threesix.ai repo: tree-test-1770067284/landing tags: - latest - ${CI_COMMIT_SHA:0:8} context: . dockerfile: apps/landing/Dockerfile cache: true skip-tls-verify: true when: branch: main event: push deploy-landing: image: bitnami/kubectl:latest commands: - kubectl set image deployment/tree-test-1770067284-landing landing=registry.threesix.ai/tree-test-1770067284/landing:${CI_COMMIT_SHA:0:8} -n projects || echo "Deployment not found, skipping" when: branch: main event: push # Do not remove the marker above - component steps are inserted here verify: image: bitnami/kubectl:latest commands: - echo "Pipeline complete for tree-test-1770067284" - kubectl get deployments -n projects -l app=tree-test-1770067284 --no-headers || true when: branch: main event: push