Remove unsupported S3 artifact reference placeholder

This commit is contained in:
2026-05-26 13:21:52 +00:00
parent 8860aa033c
commit 18792fd8d1
2 changed files with 1 additions and 2 deletions

View File

@@ -46,7 +46,7 @@ func TestCompositeReader_Read(t *testing.T) {
t.Run("unsupported ref type", func(t *testing.T) { t.Run("unsupported ref type", func(t *testing.T) {
ref := domain.ArtifactRef{ ref := domain.ArtifactRef{
Type: domain.ArtifactRefS3, Type: domain.ArtifactRefType("s3"),
URI: "s3://bucket/key", URI: "s3://bucket/key",
} }
_, err := reader.Read(ctx, ref) _, err := reader.Read(ctx, ref)

View File

@@ -10,7 +10,6 @@ type ArtifactRefType string
const ( const (
ArtifactRefInline ArtifactRefType = "inline" ArtifactRefInline ArtifactRefType = "inline"
ArtifactRefFile ArtifactRefType = "file" ArtifactRefFile ArtifactRefType = "file"
ArtifactRefS3 ArtifactRefType = "s3"
) )
// OutputFormat defines the desired format of the generated artifact. // OutputFormat defines the desired format of the generated artifact.