Fix ./ci to be workdir-independent

Signed-off-by: Solomon Hykes <solomon@dagger.io>
This commit is contained in:
Solomon Hykes
2022-03-11 09:06:00 +00:00
parent aacabb1393
commit 860759448d
6 changed files with 18 additions and 12 deletions

15
source.cue Normal file
View File

@@ -0,0 +1,15 @@
package main
import (
"dagger.io/dagger"
)
_source: dagger.#Source & {
path: "."
exclude: [
"ci",
"node_modules",
"cmd/dagger/dagger",
"cmd/dagger/dagger-debug",
]
}