12 lines
211 B
CUE
12 lines
211 B
CUE
|
import (
|
||
|
"encoding/yaml"
|
||
|
// ...
|
||
|
)
|
||
|
|
||
|
dagger.#Plan & {
|
||
|
client: filesystem: "config.yaml": write: {
|
||
|
// Convert a CUE value into a YAML formatted string
|
||
|
contents: yaml.Marshal(actions.pull.output.config)
|
||
|
}
|
||
|
}
|