Skip to content

Commit

Permalink
🚑️ Fix lack of backward compability after build cleanup (rigdev#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
andersjohnsen committed Sep 5, 2023
1 parent 31eea16 commit f124bd6
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions proto/rig/api/v1/capsule/build.proto
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ import "google/protobuf/timestamp.proto";
import "model/author.proto";

message Build {
string build_id = 1;
string digest = 2;
string repository = 3;
string tag = 4;
model.Author created_by = 5;
google.protobuf.Timestamp created_at = 6;
Origin origin = 7;
map<string, string> labels = 8;
string build_id = 2;
string digest = 7;
string repository = 8;
string tag = 9;
model.Author created_by = 3;
google.protobuf.Timestamp created_at = 4;
Origin origin = 5;
map<string, string> labels = 6;
}

message GitReference {
Expand Down

0 comments on commit f124bd6

Please sign in to comment.