Some checks failed
ci/woodpecker/push/woodpecker Pipeline failed
CD - Build & Deploy / build-and-push (push) Has been cancelled
CD - Build & Deploy / package-helm (push) Has been cancelled
CD - Build & Deploy / deploy-staging (push) Has been cancelled
CD - Build & Deploy / deploy-production (push) Has been cancelled
CD - Build & Deploy / release (push) Has been cancelled
CI / test (3.11) (push) Has been cancelled
CI / test (3.12) (push) Has been cancelled
CI / security (push) Has been cancelled
ci/woodpecker/manual/woodpecker Pipeline failed
32 lines
1008 B
YAML
32 lines
1008 B
YAML
# Peikarband Platform - Woodpecker CI/CD Pipeline
|
|
variables:
|
|
- &harbor_registry "harbor.peikarband.ir"
|
|
- &image_name "peikarband/landing"
|
|
|
|
# فیلتر کلی برای اجرا
|
|
when:
|
|
event: [push, tag, manual]
|
|
|
|
steps:
|
|
# مرحله ساخت با Kaniko (بدون نیاز به Privileged و تنظیمات Trusted)
|
|
build-and-push:
|
|
image: plugins/kaniko
|
|
settings:
|
|
registry: *harbor_registry
|
|
repo: *image_name
|
|
tags:
|
|
- latest
|
|
- ${CI_COMMIT_SHA}
|
|
# اطلاعات لاگین به Harbor
|
|
username:
|
|
from_secret: harbor_username
|
|
password:
|
|
from_secret: harbor_password
|
|
# مسیر داکرفایل (اگر در ریشه نیست تغییر دهید)
|
|
dockerfile: Dockerfile
|
|
context: .
|
|
when:
|
|
event: [push, tag, manual]
|
|
|
|
# حذف بخش clone دستی برای جلوگیری از Hang در Image Pulling
|
|
# Woodpecker به صورت پیشفرض مرحله کلون را بهینه انجام میدهد |