From fb44e2bf484cfc6c48d696113208fdc2a70b4f96 Mon Sep 17 00:00:00 2001 From: Michael Vines Date: Wed, 20 Mar 2019 21:29:44 -0700 Subject: [PATCH] Publish design proposals --- README.md | 3 +++ ci/publish-book.sh | 5 +++++ 2 files changed, 8 insertions(+) diff --git a/README.md b/README.md index c6ecda4584..491e52ca4f 100644 --- a/README.md +++ b/README.md @@ -30,6 +30,9 @@ Before you jump into the code, review the online book [Solana: Blockchain Rebuil (The _latest_ development version of the online book is also [available here](https://solana-labs.github.io/book-edge/).) +Design proposals that have not yet been integrated into the online book can be +viewed [here](https://solana-labs.github.io/book-edge/proposals/index.html). + Developing === diff --git a/ci/publish-book.sh b/ci/publish-book.sh index 301035bd62..b8c43a747b 100755 --- a/ci/publish-book.sh +++ b/ci/publish-book.sh @@ -4,10 +4,15 @@ set -e cd "$(dirname "$0")/.." book/build.sh +proposals/build.sh echo --- create book repo ( set -x + + test ! -d book/html/proposals + mv proposals/html book/html/proposals/ + cd book/html/ git init . git config user.email "maintainers@solana.com"