Public release release-020d19c19c9c
Source commit: 020d19c19c9c6b75314e0044cade95cee035ba1c Public tree identity: sha256:e38aa07291caddab6e0707e002dae9d19d3643aabe9b5770dbd450c60dbd1030
This commit is contained in:
parent
58195aae30
commit
f2ab484cb2
2 changed files with 11 additions and 9 deletions
|
|
@ -1082,11 +1082,9 @@ function main() {
|
|||
run("scripts/check-old-name.sh", [], { cwd: publicTree });
|
||||
run("node", ["scripts/check-docs.js"], { cwd: publicTree });
|
||||
run("scripts/check-code-size.sh", [], { cwd: publicTree });
|
||||
const publicTreePublish = publishPublicTree(
|
||||
releaseName,
|
||||
sourceCommit,
|
||||
publicTreeIdentity
|
||||
);
|
||||
const publicTreePublish = candidate
|
||||
? candidate.public_tree_publish
|
||||
: publishPublicTree(releaseName, sourceCommit, publicTreeIdentity);
|
||||
let binaryArchive;
|
||||
let hostedBinaryArchive;
|
||||
let binaryDigests;
|
||||
|
|
@ -1166,8 +1164,12 @@ function main() {
|
|||
include_forgejo_workflows: includeForgejoWorkflows,
|
||||
},
|
||||
forgejo_host: forgejoHost,
|
||||
public_repo_url: process.env.CLUSTERFLUX_PUBLIC_REPO_URL || publicTreePublish.remote,
|
||||
public_repo_remote: process.env.CLUSTERFLUX_PUBLIC_REPO_REMOTE || null,
|
||||
public_repo_url:
|
||||
process.env.CLUSTERFLUX_PUBLIC_REPO_URL ||
|
||||
candidate?.public_repo_url ||
|
||||
publicTreePublish.remote,
|
||||
public_repo_remote:
|
||||
process.env.CLUSTERFLUX_PUBLIC_REPO_REMOTE || candidate?.public_repo_remote || null,
|
||||
public_tree_publish: publicTreePublish,
|
||||
forgejo_release_url: process.env.CLUSTERFLUX_FORGEJO_RELEASE_URL || null,
|
||||
default_hosted_coordinator_endpoint: defaultHostedCoordinatorEndpoint,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue