26 lines
570 B
YAML
26 lines
570 B
YAML
steps:
|
|
- name: step-1
|
|
image: alpine:latest
|
|
commands:
|
|
- echo "🚀 Step 1: Starting preview pipeline"
|
|
|
|
- name: step-2
|
|
image: alpine:latest
|
|
commands:
|
|
- echo "🔧 Step 2: Simulating Helm Lint"
|
|
|
|
- name: step-3
|
|
image: alpine:latest
|
|
commands:
|
|
- echo "📦 Step 3: Would validate ArgoCD YAML here"
|
|
|
|
- name: step-4
|
|
image: alpine:latest
|
|
commands:
|
|
- echo "🌐 Step 4: Would create Cloudflare DNS record here"
|
|
|
|
- name: done
|
|
image: alpine:latest
|
|
commands:
|
|
- echo "✅ Pipeline finished successfully"
|