Skip to content

Commit

Permalink
Merge pull request #1 from stroeer/asset_metadata
Browse files Browse the repository at this point in the history
Assetindex + publication_date
  • Loading branch information
Harry Urban authored Apr 22, 2020
2 parents 2fa4240 + a5c3ce9 commit 7dcebff
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
with:
java-version: 11
- name: Publish to GitHub Packages
run: ./java/gradlew -p java version
run: ./java/gradlew -p java publish
env:
RELEASE_TAG: ${{ github.event.release.tag_name }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
3 changes: 2 additions & 1 deletion proto/content.proto
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ message Metadata {
string valid_to_date = 2;
string state = 3;
string transformation_date = 4;
string publication_date = 5;
}

message Element {
Expand Down Expand Up @@ -58,7 +59,7 @@ enum AssetType {

message Asset {
AssetType type = 1;
int64 index = 2;
int32 index = 2;
repeated string relations = 3;
map<string, string> fields = 4;
Metadata metadata = 5;
Expand Down

0 comments on commit 7dcebff

Please sign in to comment.