From 79adf217f4ca94fdfeb8a190fc7dc49fd26254dd Mon Sep 17 00:00:00 2001 From: Ophestra Date: Tue, 6 Jan 2026 04:36:01 +0900 Subject: internal/pkg: implement exec artifact This runs a program in a container environment. Artifacts can be made available to the container, they are cured concurrently and mounted in order. Signed-off-by: Ophestra --- internal/pkg/pkg.go | 2 ++ 1 file changed, 2 insertions(+) (limited to 'internal/pkg/pkg.go') diff --git a/internal/pkg/pkg.go b/internal/pkg/pkg.go index 39563c90..00d6cf76 100644 --- a/internal/pkg/pkg.go +++ b/internal/pkg/pkg.go @@ -183,6 +183,8 @@ const ( KindHTTPGet Kind = iota // KindTar is the kind of [Artifact] returned by [NewTar]. KindTar + // KindExec is the kind of [Artifact] returned by [NewExec]. + KindExec ) // Ident returns a deterministic identifier for the supplied params and -- cgit v1.3.1