11586abfdc
Shorten one of the code samples, keeping only the part that speaks to the topic in the docs.
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)
|
|
}
|
|
}
|