@@ -47,7 +47,8 @@ export namespace Build {
4747 AssetPreview = 'asset-preview' ,
4848 AssetNotify = 'asset-notify' ,
4949 DataSafetyCsv = 'data-safety-csv' ,
50- PlayListingDownload = 'play-listing-download'
50+ PlayListingDownload = 'play-listing-download' ,
51+ DataManagement = 'data-management'
5152 }
5253
5354 export function artifactType ( key : string ) : [ Artifact , string ] {
@@ -72,6 +73,8 @@ export namespace Build {
7273 type = Artifact . PublishProperties ;
7374 } else if ( file === 'about.txt' ) {
7475 type = Artifact . About ;
76+ } else if ( file === 'data_management.json' ) {
77+ type = Artifact . DataManagement ;
7578 } else if ( file === 'whats_new.txt' ) {
7679 type = Artifact . WhatsNew ;
7780 } else if ( file === 'html.zip' ) {
@@ -155,9 +158,10 @@ export namespace Build {
155158 ) ;
156159 artifacts [ Artifact . WhatsNew ] = getArtifactUrl ( / w h a t s _ n e w \. t x t / , base , files ) ;
157160 artifacts [ Artifact . PlayListingDownload ] = getArtifactUrl ( / p l a y - l i s t i n g \. z i p $ / , base , files ) ;
161+ artifacts [ Artifact . DataManagement ] = getArtifactUrl ( / d a t a _ m a n a g e m e n t \. j s o n / , base , files ) ;
158162 }
159163
160- if ( targets ?. match ( 'play- html' ) ) {
164+ if ( targets ?. match ( 'html' ) ) {
161165 artifacts [ Artifact . HTML ] = getArtifactUrl ( / h t m l \. z i p / , base , files ) ;
162166 }
163167
0 commit comments