From 6949c99022caf03aa9e76375f7c03e92646defa2 Mon Sep 17 00:00:00 2001 From: wass3rw3rk <49894298+wass3rw3rk@users.noreply.github.com> Date: Fri, 5 Jun 2026 14:57:27 -0500 Subject: [PATCH] fix: error in usage docs --- docs/usage/stage_orchestration.md | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/docs/usage/stage_orchestration.md b/docs/usage/stage_orchestration.md index 3f13aae..d641055 100644 --- a/docs/usage/stage_orchestration.md +++ b/docs/usage/stage_orchestration.md @@ -57,12 +57,13 @@ version: "1" stages: build: steps: - - name: Build My Docker Image - image: target/vela-kaniko:latest - parameters: - registry: index.docker.io - repo: index.docker.io/octocat/hello-world - dry-run: true + - name: Build My Code + image: golang:latest + environment: + CGO_ENABLED: '0' + GOOS: linux + commands: + - go build notify: needs: [ build ] steps: