diff --git a/examples/go/blueprint.cue b/examples/go/blueprint.cue index 9b6a53a..7f35dbb 100644 --- a/examples/go/blueprint.cue +++ b/examples/go/blueprint.cue @@ -2,7 +2,7 @@ version: "1.0.0" project: { name: "go" ci: targets: { - publish: { + docker: { args: { version: string | *"v0.0.0" @env(name="GIT_TAG_VERSION",type="string") } @@ -11,7 +11,7 @@ project: { "linux/arm64", ] } - release: { + github: { args: { version: string | *"v0.0.0" @env(name="GIT_TAG_VERSION",type="string") } diff --git a/examples/rust/blueprint.cue b/examples/rust/blueprint.cue index 901c832..12cb1d0 100644 --- a/examples/rust/blueprint.cue +++ b/examples/rust/blueprint.cue @@ -5,14 +5,14 @@ project: { build: { privileged: true } - release: { + docker: { platforms: [ "linux/amd64", "linux/arm64", ] privileged: true } - publish: { + github: { platforms: [ "linux/amd64", "linux/arm64",