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
|
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
"kind": "clusterflux-filtered-public-tree",
|
"kind": "clusterflux-filtered-public-tree",
|
||||||
"source_commit": "5e0e2bce9be3df55b3b7bd4f9a287c58ca2f4385",
|
"source_commit": "020d19c19c9c6b75314e0044cade95cee035ba1c",
|
||||||
"release_name": "release-5e0e2bce9be3",
|
"release_name": "release-020d19c19c9c",
|
||||||
"filtered_out": [
|
"filtered_out": [
|
||||||
"private/**",
|
"private/**",
|
||||||
"internal/**",
|
"internal/**",
|
||||||
|
|
|
||||||
|
|
@ -1082,11 +1082,9 @@ function main() {
|
||||||
run("scripts/check-old-name.sh", [], { cwd: publicTree });
|
run("scripts/check-old-name.sh", [], { cwd: publicTree });
|
||||||
run("node", ["scripts/check-docs.js"], { cwd: publicTree });
|
run("node", ["scripts/check-docs.js"], { cwd: publicTree });
|
||||||
run("scripts/check-code-size.sh", [], { cwd: publicTree });
|
run("scripts/check-code-size.sh", [], { cwd: publicTree });
|
||||||
const publicTreePublish = publishPublicTree(
|
const publicTreePublish = candidate
|
||||||
releaseName,
|
? candidate.public_tree_publish
|
||||||
sourceCommit,
|
: publishPublicTree(releaseName, sourceCommit, publicTreeIdentity);
|
||||||
publicTreeIdentity
|
|
||||||
);
|
|
||||||
let binaryArchive;
|
let binaryArchive;
|
||||||
let hostedBinaryArchive;
|
let hostedBinaryArchive;
|
||||||
let binaryDigests;
|
let binaryDigests;
|
||||||
|
|
@ -1166,8 +1164,12 @@ function main() {
|
||||||
include_forgejo_workflows: includeForgejoWorkflows,
|
include_forgejo_workflows: includeForgejoWorkflows,
|
||||||
},
|
},
|
||||||
forgejo_host: forgejoHost,
|
forgejo_host: forgejoHost,
|
||||||
public_repo_url: process.env.CLUSTERFLUX_PUBLIC_REPO_URL || publicTreePublish.remote,
|
public_repo_url:
|
||||||
public_repo_remote: process.env.CLUSTERFLUX_PUBLIC_REPO_REMOTE || null,
|
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,
|
public_tree_publish: publicTreePublish,
|
||||||
forgejo_release_url: process.env.CLUSTERFLUX_FORGEJO_RELEASE_URL || null,
|
forgejo_release_url: process.env.CLUSTERFLUX_FORGEJO_RELEASE_URL || null,
|
||||||
default_hosted_coordinator_endpoint: defaultHostedCoordinatorEndpoint,
|
default_hosted_coordinator_endpoint: defaultHostedCoordinatorEndpoint,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue