From 4f802644262d9ea418280c1ead1285680b925f35 Mon Sep 17 00:00:00 2001 From: Samuel Burnham <45365069+samuelburnham@users.noreply.github.com> Date: Thu, 24 Oct 2024 20:04:00 -0400 Subject: [PATCH] Add home page --- .github/workflows/book.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/.github/workflows/book.yml b/.github/workflows/book.yml index 81466ce2..28864ac6 100644 --- a/.github/workflows/book.yml +++ b/.github/workflows/book.yml @@ -20,6 +20,28 @@ jobs: - uses: actions/checkout@v4 - uses: dtolnay/rust-toolchain@stable - uses: taiki-e/install-action@mdbook + - name: Create base page + run: | + mkdir -p public + cat < ./public/index.html + + + + + + ZK Light Clients + + +

Welcome to the ZK Light Clients homepage. Documentation for each light client can be found at the following links

+ + + + EOF + working-directory: ${{ github.workspace }} - name: Build mdbook run: | for book in aptos ethereum kadena; do @@ -30,6 +52,7 @@ jobs: cp -r book/* ${{ github.workspace }}/public/${book} cd ${{ github.workspace }} done + working-directory: ${{ github.workspace }} - name: Upload build artifact uses: actions/upload-pages-artifact@v3 with: