Fix pipeline

This commit is contained in:
dvirlabs 2025-05-05 21:27:30 +03:00
parent c72431dc04
commit 8835b317b2

View File

@ -1,25 +1,15 @@
when:
- event: push
branch: main
steps: steps:
- name: step-1 - name: build
image: alpine:latest image: debian
commands: commands:
- echo "Step 1: Starting preview pipeline" - echo "This is the build step"
- echo "binary-data-123" > executable
- name: step-2 - name: a-test-step
image: alpine:latest image: golang:1.16
commands: commands:
- echo "Step 2: Simulating Helm Lint" - echo "Testing ..."
- ./executable
- 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"