This is an automated email from the ASF dual-hosted git repository.

tison pushed a commit to branch deploy
in repository https://gitbox.apache.org/repos/asf/incubator-horaedb-docs.git

commit 794ce733b017c1dcb25509a1ccd55590ad553e0e
Author: tison <[email protected]>
AuthorDate: Mon Dec 25 19:02:35 2023 +0800

    chore: put it all together
    
    Signed-off-by: tison <[email protected]>
---
 .github/workflows/deploy.yml                  | 3 ++-
 docs/src/about.md                             | 4 +---
 docs/src/cluster_deployment/with_meta.md      | 6 +++---
 docs/src/design/storage.md                    | 2 +-
 docs/src/operation/observability.md           | 8 ++++----
 docs/src/sql/functions/aggregate_functions.md | 2 +-
 docs/src/sql/functions/scalar_functions.md    | 2 +-
 7 files changed, 13 insertions(+), 14 deletions(-)

diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml
index d2de092..8743538 100644
--- a/.github/workflows/deploy.yml
+++ b/.github/workflows/deploy.yml
@@ -5,6 +5,7 @@ on:
   push:
     branches:
       - main
+  pull_request:
 
 # Allow one concurrent deployment
 concurrency:
@@ -25,5 +26,5 @@ jobs:
         if: github.event_name != 'pull_request'
         with:
           github_token: ${{ secrets.GITHUB_TOKEN }}
-          publish_dir: ./docs/book/html
+          publish_dir: ./docs/book
           publish_branch: asf-site
diff --git a/docs/src/about.md b/docs/src/about.md
index 5536ebb..e77d0ad 100644
--- a/docs/src/about.md
+++ b/docs/src/about.md
@@ -1,8 +1,6 @@
-![HoraeDB](https://github.com/CeresDB/horaedb/raw/main/docs/logo/CeresDB.png)
-
 ![License](https://img.shields.io/badge/license-Apache--2.0-green.svg)
 
[![CI](https://github.com/apache/incubator-horaedb/actions/workflows/ci.yml/badge.svg)](https://github.com/apache/incubator-horaedb/actions/workflows/ci.yml)
-[![OpenIssue](https://img.shields.io/github/issues/CeresDB/horaedb)](https://github.com/apache/incubator-horaedb/issues)
+[![OpenIssue](https://img.shields.io/github/issues/apache/incubator-horaedb)](https://github.com/apache/incubator-horaedb/issues)
 
 HoraeDB is a high-performance, distributed, cloud native time-series database.
 
diff --git a/docs/src/cluster_deployment/with_meta.md 
b/docs/src/cluster_deployment/with_meta.md
index e6439f9..ecbaa8e 100644
--- a/docs/src/cluster_deployment/with_meta.md
+++ b/docs/src/cluster_deployment/with_meta.md
@@ -253,9 +253,9 @@ memory_limit = "4G"
 
 Let's name this config file as `config.toml`. And the example configs, in 
which the templates must be replaced with real parameters before use, for 
remote storages are also provided:
 
-- [RocksDB WAL + OSS](../../resources/config_local_oss.toml)
-- [OceanBase WAL + OSS](../../resources/config_obkv_oss.toml)
-- [Kafka WAL + OSS](../../resources/config_kafka_oss.toml)
+- [RocksDB WAL + OSS](../resources/config_local_oss.toml)
+- [OceanBase WAL + OSS](../resources/config_obkv_oss.toml)
+- [Kafka WAL + OSS](../resources/config_kafka_oss.toml)
 
 ## Run HoraeDB cluster with HoraeMeta
 
diff --git a/docs/src/design/storage.md b/docs/src/design/storage.md
index 2829412..ee1264f 100644
--- a/docs/src/design/storage.md
+++ b/docs/src/design/storage.md
@@ -13,7 +13,7 @@ HoraeDB is a distributed storage system based on the 
share-nothing architecture.
 
 Data between different servers is isolated from each other and does not affect 
each other. The storage engine in each stand-alone machine is a variant of 
[log-structured 
merge-tree](https://en.wikipedia.org/wiki/Log-structured_merge-tree), which is 
optimized for time-series scenarios. The following figure shows its core 
components:
 
-![](../../resources/images/storage-overview.svg)
+![](../resources/images/storage-overview.svg)
 
 ## Write Ahead Log (WAL)
 
diff --git a/docs/src/operation/observability.md 
b/docs/src/operation/observability.md
index 669fe42..85f9b8f 100644
--- a/docs/src/operation/observability.md
+++ b/docs/src/operation/observability.md
@@ -65,21 +65,21 @@ For more detailed installation methods, refer to 
[here](https://grafana.com/docs
 
 Note: The url of Prometheus is `http://your_ip:9090`.
 
-<img src="../../resources/images/grafana-datasource.png" height="400" 
width="200"/>
+<img src="../resources/images/grafana-datasource.png" height="400" 
width="200"/>
 
 See more details 
[here](https://grafana.com/docs/grafana/latest/datasources/prometheus/).
 
 ### Import grafana dashboard
 
-<a href="../../resources/grafana-dashboard.json">dashboard json</a>
+<a href="../resources/grafana-dashboard.json">dashboard json</a>
 
-<img src="../../resources/images/grafana-dashboard.png" height="400" 
width="200"/>
+<img src="../resources/images/grafana-dashboard.png" height="400" width="200"/>
 
 ## HoraeDB Metrics
 
 After importing the dashboard, you will see the following page:
 
-<img src="../../resources/images/grafana-horaedb-dashboard.png" height="400" 
width="600"/>
+<img src="../resources/images/grafana-horaedb-dashboard.png" height="400" 
width="600"/>
 
 ### Panels
 
diff --git a/docs/src/sql/functions/aggregate_functions.md 
b/docs/src/sql/functions/aggregate_functions.md
index 052c55a..f454e97 100644
--- a/docs/src/sql/functions/aggregate_functions.md
+++ b/docs/src/sql/functions/aggregate_functions.md
@@ -1,6 +1,6 @@
 # Aggregate Functions
 
-HoraeDB SQL is implemented with 
[DataFusion](https://github.com/CeresDB/arrow-datafusion), Here is the list of 
aggregate functions. See more detail, Refer to 
[Datafusion](https://github.com/CeresDB/arrow-datafusion/blob/master/docs/source/user-guide/sql/aggregate_functions.md)
+HoraeDB SQL is implemented with 
[DataFusion](https://github.com/apache/arrow-datafusion), Here is the list of 
aggregate functions. See more detail, Refer to 
[Datafusion](https://github.com/apache/arrow-datafusion/blob/master/docs/source/user-guide/sql/aggregate_functions.md)
 
 ## General
 
diff --git a/docs/src/sql/functions/scalar_functions.md 
b/docs/src/sql/functions/scalar_functions.md
index 3923c56..9e4cd13 100644
--- a/docs/src/sql/functions/scalar_functions.md
+++ b/docs/src/sql/functions/scalar_functions.md
@@ -1,6 +1,6 @@
 # Scalar Functions
 
-HoraeDB SQL is implemented with 
[DataFusion](https://github.com/CeresDB/arrow-datafusion), Here is the list of 
scalar functions. See more detail, Refer to 
[Datafusion](https://github.com/CeresDB/arrow-datafusion/blob/master/docs/source/user-guide/sql/scalar_functions.md)
+HoraeDB SQL is implemented with 
[DataFusion](https://github.com/apache/arrow-datafusion), Here is the list of 
scalar functions. See more detail, Refer to 
[Datafusion](https://github.com/apache/arrow-datafusion/blob/master/docs/source/user-guide/sql/scalar_functions.md)
 
 ## Math Functions
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to