813a476e06
Signed-off-by: Helder Correia <174525+helderco@users.noreply.github.com>
18 lines
294 B
CUE
18 lines
294 B
CUE
package main
|
|
|
|
import "dagger.io/dagger/engine"
|
|
|
|
engine.#Plan & {
|
|
actions: data: engine.#WriteFile & {
|
|
input: engine.#Scratch
|
|
path: "/test"
|
|
permissions: 0o600
|
|
contents: "foobar"
|
|
}
|
|
|
|
outputs: directories: test: {
|
|
contents: actions.data.output
|
|
dest: "./out"
|
|
}
|
|
}
|