Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 8 additions & 5 deletions eng/update-dependencies/FromStagingPipelineCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -70,11 +70,14 @@ public override async Task<int> ExecuteAsync(FromStagingPipelineOptions options)
DotNetVersion dotNetVersion = DotNetVersion.Parse(releaseConfig.RuntimeBuild);
string majorMinorVersionString = dotNetVersion.ToString(2);

// Record pipeline run ID for this internal version, for later use by sync-internal-release command
_internalVersionsService.RecordInternalStagingBuild(
repoRoot: gitRepoContext.LocalRepoPath,
dotNetVersion: dotNetVersion,
stagingPipelineRunId: options.StagingPipelineRunId);
if (options.Internal)
{
// Record pipeline run ID for this internal version, for later use by sync-internal-release command
_internalVersionsService.RecordInternalStagingBuild(
repoRoot: gitRepoContext.LocalRepoPath,
dotNetVersion: dotNetVersion,
stagingPipelineRunId: options.StagingPipelineRunId);
}

var productVersions = (options.Internal, releaseConfig.SdkOnly) switch
{
Expand Down
6 changes: 3 additions & 3 deletions manifest.versions.json
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,13 @@
"alpine|9.0|floating-tag-version": "$(alpine|floating-tag-version)",
"alpine|8.0|floating-tag-version": "$(alpine|floating-tag-version)",

"aspire-dashboard|build-version": "13.2.0-preview.1.26058.1",
"aspire-dashboard|build-version": "13.2.0-preview.1.26065.2",
"aspire-dashboard|product-version": "13.2.0",
"aspire-dashboard|fixed-tag": "13.2.0",
"aspire-dashboard|minor-tag": "13.2",
"aspire-dashboard|major-tag": "13",
"aspire-dashboard|linux|x64|sha": "f91d198d797bc30b969189f20279d60388d619f1c10dd2cb005627e551c079a238a0963951cc2cd8ee668ed97e304aaf97599cf30636661035618b2551220663",
"aspire-dashboard|linux|arm64|sha": "dd0e1f7b625d22a0900557358f7f97b10015c5c1b8318296dcf8935a9bcf249d58ccbd09248838d8cd538f7ef5d71aebbafd554ee7d8a5874baae1d97c2784b9",
"aspire-dashboard|linux|x64|sha": "44418670d0c7e9e4241836d903e339fe18a9d90b2654647fddd152e9613c4d9b9949e58db7ac204badba5ce19e26edfe1f52516668aa3e298c2bd59ec42e0b3b",
"aspire-dashboard|linux|arm64|sha": "f2ec2e3770f89b8602af7096ef07f03263014724bb930479d857817c68df41fcec94fa8b53fcf81c24a98868ead2e424ec57388c955300275c33e5b9e24880fb",
"aspire-dashboard|base-url|main": "$(base-url|public|preview|nightly)",
"aspire-dashboard|base-url|nightly": "$(base-url|public|preview|nightly)",

Expand Down
4 changes: 2 additions & 2 deletions src/aspire-dashboard/amd64/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ RUN tdnf install -y \
&& tdnf clean all

# Retrieve Aspire Dashboard
RUN dotnet_aspire_version=13.2.0-preview.1.26058.1 \
RUN dotnet_aspire_version=13.2.0-preview.1.26065.2 \
&& curl --fail --show-error --location --output aspire_dashboard.zip https://ci.dot.net/public/aspire/$dotnet_aspire_version/aspire-dashboard-linux-x64.zip \
&& aspire_dashboard_sha512='f91d198d797bc30b969189f20279d60388d619f1c10dd2cb005627e551c079a238a0963951cc2cd8ee668ed97e304aaf97599cf30636661035618b2551220663' \
&& aspire_dashboard_sha512='44418670d0c7e9e4241836d903e339fe18a9d90b2654647fddd152e9613c4d9b9949e58db7ac204badba5ce19e26edfe1f52516668aa3e298c2bd59ec42e0b3b' \
&& echo "$aspire_dashboard_sha512 aspire_dashboard.zip" | sha512sum -c - \
&& mkdir --parents /app \
&& unzip aspire_dashboard.zip -d /app \
Expand Down
4 changes: 2 additions & 2 deletions src/aspire-dashboard/arm64v8/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,9 @@ RUN tdnf install -y \
&& tdnf clean all

# Retrieve Aspire Dashboard
RUN dotnet_aspire_version=13.2.0-preview.1.26058.1 \
RUN dotnet_aspire_version=13.2.0-preview.1.26065.2 \
&& curl --fail --show-error --location --output aspire_dashboard.zip https://ci.dot.net/public/aspire/$dotnet_aspire_version/aspire-dashboard-linux-arm64.zip \
&& aspire_dashboard_sha512='dd0e1f7b625d22a0900557358f7f97b10015c5c1b8318296dcf8935a9bcf249d58ccbd09248838d8cd538f7ef5d71aebbafd554ee7d8a5874baae1d97c2784b9' \
&& aspire_dashboard_sha512='f2ec2e3770f89b8602af7096ef07f03263014724bb930479d857817c68df41fcec94fa8b53fcf81c24a98868ead2e424ec57388c955300275c33e5b9e24880fb' \
&& echo "$aspire_dashboard_sha512 aspire_dashboard.zip" | sha512sum -c - \
&& mkdir --parents /app \
&& unzip aspire_dashboard.zip -d /app \
Expand Down