# Peikarband Platform - Woodpecker CI/CD Pipeline variables: - &harbor_registry "hub.peikarband.ir" - &image_name "peikarband/landing" steps: build-and-push: image: plugins/kaniko settings: registry: *harbor_registry repo: *image_name tags: - latest - ${CI_COMMIT_SHA:0:8} username: from_secret: harbor_username password: from_secret: harbor_password dockerfile: Dockerfile context: . insecure: false skip_tls_verify: false when: event: [push, tag, manual]