Skip to content

Commit c2690ba

Browse files
gitcommit90claude
andauthored
release: fill the 0.0.40 offline release fallback digests (#63)
The offline fallback's digests are the digests of 0.0.40's own artifacts, so they could not exist in the release commit. Now filled from the verified artifacts: 1Helm-0.0.40-arm64.dmg d9686853… 1Helm-0.0.40-mac-arm64.zip a18f7b3e… 1Helm-0.0.40-linux-node.tgz 95267b23… Co-authored-by: Joseph Yaksich <gitcommit90@users.noreply.github.com> Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1 parent 3e1ffce commit c2690ba

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

site/server.mjs

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,16 +40,15 @@ const RELEASE_CACHE_MS = 10 * 60_000;
4040
// 64 hex characters, so latestLinuxRelease() rejects it and
4141
// /api/releases/linux/latest answers 503 - failing closed rather than handing
4242
// an installer a digest that cannot match what it downloads.
43-
const PENDING_DIGEST = "pending-release-digest";
4443
const RELEASE_FALLBACK_TAG = "v0.0.40";
4544
const RELEASE_FALLBACK = {
4645
tag_name: RELEASE_FALLBACK_TAG,
4746
draft: false,
4847
prerelease: false,
4948
assets: [
50-
["1Helm-0.0.40-arm64.dmg", PENDING_DIGEST],
51-
["1Helm-0.0.40-mac-arm64.zip", PENDING_DIGEST],
52-
["1Helm-0.0.40-linux-node.tgz", PENDING_DIGEST],
49+
["1Helm-0.0.40-arm64.dmg", "d96868530bbeb3708e82d027bd079c129bf064e16e3d1e7482a999dd5a1e439a"],
50+
["1Helm-0.0.40-mac-arm64.zip", "a18f7b3e6e4c1c5f8e060d47a2fd1cba6461e1aa8ccafbbb5a24d6e43051ccfd"],
51+
["1Helm-0.0.40-linux-node.tgz", "95267b23753628a843cec0de54380355a04a6c9826ae60c37ce0da41b41d95e7"],
5352
].map(([name, digest]) => ({
5453
name,
5554
digest: `sha256:${digest}`,

0 commit comments

Comments
 (0)