File tree Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Expand file tree Collapse file tree 1 file changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -37,8 +37,10 @@ public override async Task RunAsync(BuildContext context)
37
37
}
38
38
}
39
39
40
- foreach ( var r in availableRids )
40
+ foreach ( var r in availableRids ) {
41
+ context . Information ( $ "Uploading: { context . ArtifactsDir } /{ r } to artifacts-{ r } ") ;
41
42
await context . BuildSystem ( ) . GitHubActions . Commands . UploadArtifact ( DirectoryPath . FromString ( $ "{ context . ArtifactsDir } /{ r } ") , $ "artifacts-{ r } ") ;
43
+ }
42
44
43
45
if ( availableRids . Any ( ) )
44
46
return ;
@@ -58,6 +60,7 @@ public override async Task RunAsync(BuildContext context)
58
60
_ => "-x64" ,
59
61
} ;
60
62
}
63
+ context . Information ( $ "Uploading: { context . ArtifactsDir } to artifacts-{ rid } ") ;
61
64
await context . BuildSystem ( ) . GitHubActions . Commands . UploadArtifact ( DirectoryPath . FromString ( context . ArtifactsDir ) , $ "artifacts-{ rid } ") ;
62
65
}
63
66
}
You can’t perform that action at this time.
0 commit comments