github.com/kubevela/workflow@v0.6.0/pkg/stdlib/actions/v1/pkgs/ws.cue (about) 1 #Load: { 2 #do: "load" 3 component?: string 4 value?: {...} 5 ... 6 } 7 8 #Export: { 9 #do: "export" 10 component: string 11 value: _ 12 } 13 14 #DoVar: { 15 #do: "var" 16 17 // +usage=The method to call on the variable 18 method: *"Get" | "Put" 19 // +usage=The path to the variable 20 path: string 21 // +usage=The value of the variable 22 value?: _ 23 }