Skip to content

Commit

Permalink
Use resolved container name when archiving (#75)
Browse files Browse the repository at this point in the history
  • Loading branch information
timja authored Aug 10, 2023
1 parent 65f5565 commit f94ad34
Showing 1 changed file with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,11 @@ public void archive(FilePath workspace, Launcher launcher, BuildListener listene
.act(new ContentTypeGuesser(new ArrayList<>(artifacts.keySet()), listener));

try {
BlobContainerClient container = Utils.getBlobContainerReference(accountInfo, config.getContainer(), true);
BlobContainerClient container = Utils.getBlobContainerReference(
accountInfo,
this.actualContainerName,
true
);

for (Map.Entry<String, String> entry : contentTypes.entrySet()) {
String path = "artifacts/" + entry.getKey();
Expand Down

0 comments on commit f94ad34

Please sign in to comment.