6204970d53
Signed-off-by: Helder Correia <174525+helderco@users.noreply.github.com>
16 lines
267 B
CUE
16 lines
267 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)
|
|
}
|
|
|
|
actions: pull: docker.#Pull & {
|
|
source: "alpine"
|
|
}
|
|
}
|