summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn Lee <john.lee@algorand.com>2024-01-11 18:46:42 -0500
committerGitHub <noreply@github.com>2024-01-11 18:46:42 -0500
commitd383a911847648140e15994d21a151b7cafdce0c (patch)
treeab78e570fee8a0c8853b4ded9ed2be4ff72c8966
parent57bc582e6dbcd284a6ca3430b2eeb74266ac7f0e (diff)
Releases Page: remove indexer and point to github (#5896)
-rwxr-xr-xscripts/release/mule/deploy/releases_page/generate_releases_page.py4
-rw-r--r--scripts/release/mule/deploy/releases_page/html.tpl16
2 files changed, 11 insertions, 9 deletions
diff --git a/scripts/release/mule/deploy/releases_page/generate_releases_page.py b/scripts/release/mule/deploy/releases_page/generate_releases_page.py
index 07d7ce70a..d0b580cd7 100755
--- a/scripts/release/mule/deploy/releases_page/generate_releases_page.py
+++ b/scripts/release/mule/deploy/releases_page/generate_releases_page.py
@@ -24,7 +24,7 @@ html_tpl = "html.tpl"
# Nit: should be styles_file
styles_url = "releases_page.css"
# May want to call these channels instead
-tokens = ["stable", "beta", "indexer"]
+tokens = ["stable", "beta"]
def get_stage_release_set(response):
@@ -201,7 +201,7 @@ def main():
channels = {}
# Should use tokens array instead
- for channel in ["stable", "beta", "indexer"]:
+ for channel in ["stable", "beta"]:
# Fetch contents of e.g. s3://algorand-dev-deb-repo/releases/beta/
# Note: MaxKeys will limit to last 100 releases, which is more than
# enough. Consider dropping this to 2.
diff --git a/scripts/release/mule/deploy/releases_page/html.tpl b/scripts/release/mule/deploy/releases_page/html.tpl
index 3c8f78bc9..d51ba241d 100644
--- a/scripts/release/mule/deploy/releases_page/html.tpl
+++ b/scripts/release/mule/deploy/releases_page/html.tpl
@@ -13,6 +13,15 @@
<p>The public key for verifying RPMs is <a href="https://releases.algorand.com/rpm/rpm_algorand.pub">https://releases.algorand.com/rpm/rpm_algorand.pub</a></p>
<p>The public key for verifying binaries out of our CI builds is <a href="https://releases.algorand.com/dev_ci_build.pub">https://releases.algorand.com/dev_ci_build.pub</a></p>
+<h2>Indexer/Conduit</h2>
+
+Use the CI Build key above to verify these binaries.
+
+<ul>
+<li><a href="https://github.com/algorand/conduit/releases/latest">Latest Conduit Release</a></li>
+<li><a href="https://github.com/algorand/indexer/releases/latest">Latest Indexer Release</a></li>
+</ul>
+
<hr>
<section id="algod">
@@ -30,13 +39,6 @@
<hr>
-<section id="indexer">
-<h1>Indexer releases</h1>
-<table><tr><th>File</th><th>Bytes</th><th>GPG Signature</th></tr>
-{indexer}
-</table>
-</section>
-
</body>
</html>