Skip to content

Commit

Permalink
Releases Page: remove indexer and point to github (algorand#5896)
Browse files Browse the repository at this point in the history
  • Loading branch information
onetechnical authored Jan 11, 2024
1 parent 57bc582 commit d383a91
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
# 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):
Expand Down Expand Up @@ -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.
Expand Down
16 changes: 9 additions & 7 deletions scripts/release/mule/deploy/releases_page/html.tpl
Original file line number Diff line number Diff line change
Expand Up @@ -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">
Expand All @@ -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>

0 comments on commit d383a91

Please sign in to comment.