6a7b5f3337
Signed-off-by: Joel Longtine <joel@dagger.io>
18 lines
307 B
CUE
18 lines
307 B
CUE
package main
|
|
|
|
import "alpha.dagger.io/europa/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"
|
|
}
|
|
}
|