feat: can upload archives

Signed-off-by: kjuulh <contact@kjuulh.io>
This commit is contained in:
2024-02-18 01:29:46 +01:00
parent c54bbaf017
commit c3739c1bc1
16 changed files with 472 additions and 23 deletions

View File

@@ -3,16 +3,15 @@ syntax = "proto3";
package flux_releaser;
service Greeter {
// Sends a greeting
rpc SayHello (HelloRequest) returns (HelloReply) {}
}
// The request message containing the user's name.
message HelloRequest {
string name = 1;
string app = 1;
string branch = 2;
string folder = 3; // Change to files instead
}
// The response message containing the greetings.
message HelloReply {
string message = 1;
}