syntax = "proto3";
package vorpal.worker;
option go_package = "github.com/ALT-F4-LLC/vorpal/sdk/go/pkg/api/worker";
import "artifact/artifact.proto";
service WorkerService {
rpc BuildArtifact(BuildArtifactRequest) returns (stream BuildArtifactResponse);
}
message BuildArtifactRequest {
repeated string artifact_aliases = 1;
string artifact_namespace = 2;
string registry = 4;
vorpal.artifact.Artifact artifact = 3;
}
message BuildArtifactResponse {
string output = 1;
}