diff --git a/docs/release_page/style.css b/docs/release_page/style.css index fb01fa04873ea8fb3c9ade3f38fafc94f322719c..7987f9a4950958704fb90220d9ed93580ddb1907 100644 --- a/docs/release_page/style.css +++ b/docs/release_page/style.css @@ -9,13 +9,29 @@ body { } /* Header Styles */ +h1 { + color: #1D2227; +} + h2 { - color: #4CAF50; + color: #0F61FF; border-bottom: 2px solid #ddd; padding-bottom: 5px; margin-top: 20px; } +h3 { + color: #9F329F; + padding-bottom: 5px; + margin-top: 20px; +} + +h4 { + color: #1D2227; + padding-bottom: 5px; + margin-top: 20px; +} + /* Unordered List Styles */ ul { list-style-type: square; diff --git a/scripts/ci/release_page_publish.sh b/scripts/ci/release_page_publish.sh index fac162194a46886b27ba3034916f5d57d5234dcd..83ee7bd99e63c07400918c511208de93a5d24947 100755 --- a/scripts/ci/release_page_publish.sh +++ b/scripts/ci/release_page_publish.sh @@ -51,7 +51,7 @@ echo "# Octez Releases" >> index.md # Define the content of the release page tac "$Releases_list" | while IFS= read -r release; do echo "## $release" >> index.md - echo "## Static binaries" >> index.md + echo "### Static binaries" >> index.md for arch in x86_64 arm64; do echo "#### $arch" >> index.md @@ -67,7 +67,7 @@ pandoc index.md -s --template="./docs/release_page/template.html" --metadata tit echo "Syncing files to remote s3 bucket" -if aws s3 cp "./index.html" "s3://${S3_BUCKET}/" --region "${REGION}" && aws s3 cp "./$Releases_list" "s3://${S3_BUCKET}/" --region "${REGION}"; then +if aws s3 cp "./docs/release_page/style.css" "s3://${S3_BUCKET}/" --region "${REGION}" && aws s3 cp "./index.html" "s3://${S3_BUCKET}/" --region "${REGION}" && aws s3 cp "./$Releases_list" "s3://${S3_BUCKET}/" --region "${REGION}"; then echo "Deployment successful!" else echo "Deployment failed. Please check the configuration and try again."