Skip to content

Commit

Permalink
Merge pull request #3740 from OpenLiberty/staging
Browse files Browse the repository at this point in the history
Update prod
  • Loading branch information
natalie-bernhard authored May 17, 2024
2 parents b2b9a4d + eb952f7 commit 95e40a1
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 57 deletions.
54 changes: 0 additions & 54 deletions scripts/build/docs.sh

This file was deleted.

2 changes: 1 addition & 1 deletion src/main/content/_assets/css/guides.scss
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ $blue-grey-color: #5d6a8e;
}

// override bootstrap breakpoint to trigger 3 guides per row earlier
@media (min-width: 1150px) and (max-width: 1400px) {
@media (min-width: 1150px) and (max-width: 1450px) {
.guide_column.col-lg-3 {
width: 33.33333333%;
max-width: 33.333333%;
Expand Down
10 changes: 8 additions & 2 deletions src/main/content/_assets/js/builds.js
Original file line number Diff line number Diff line change
Expand Up @@ -130,21 +130,27 @@ function getPublicKeyURL(liberty_version) {
var liberty_versions_using_2023_pem = ["23.0.0.2", "23.0.0.3", "23.0.0.4", "23.0.0.5", "23.0.0.6",
"23.0.0.7", "23.0.0.8", "23.0.0.9", "23.0.0.10", "23.0.0.11", "23.0.0.12"];

var liberty_versions_using_2024_v1_pem = ["24.0.0.1", "24.0.0.2", "24.0.0.3", "24.0.0.4"];

var pem_2021_href =
"https://public.dhe.ibm.com/ibmdl/export/pub/software/openliberty/sign/public_keys/WebSphereLiberty_06-02-2021.pem";

var pem_2023_href =
"https://public.dhe.ibm.com/ibmdl/export/pub/software/openliberty/sign/public_keys/OpenLiberty_02-13-2023.pem";

var pem_2024_href =
var pem_2024_v1_href =
"https://public.dhe.ibm.com/ibmdl/export/pub/software/openliberty/sign/public_keys/OpenLiberty_02-13-2023.pem.cer";

var pem_2024_v2_href = "https://public.dhe.ibm.com/ibmdl/export/pub/software/openliberty/sign/public_keys/OpenLiberty_05-08-2024.pem.cer"

if(liberty_versions_using_2021_pem.indexOf(liberty_version) > -1) {
return pem_2021_href;
} else if(liberty_versions_using_2023_pem.indexOf(liberty_version) > -1) {
return pem_2023_href;
} else if(liberty_versions_using_2024_v1_pem.indexOf(liberty_version) > -1) {
return pem_2024_v1_href;
} else {
return pem_2024_href;
return pem_2024_v2_href;
}
}

Expand Down

0 comments on commit 95e40a1

Please sign in to comment.