From ff2c9fafa4fd73b1db59c26530bc5c2d26f55f54 Mon Sep 17 00:00:00 2001 From: facklambda <4878248+facklambda@users.noreply.github.com> Date: Thu, 21 Oct 2021 07:06:29 -0500 Subject: [PATCH] added ARCHITECTURE to update-docs workflow, fixes #2088 (#2773) Co-authored-by: fack --- .github/workflows/covector-version-or-publish.yml | 2 +- .github/workflows/update-docs.yml | 2 +- docs/getting-started/intro.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/covector-version-or-publish.yml b/.github/workflows/covector-version-or-publish.yml index 2bdaa13e7..b0d672a49 100644 --- a/.github/workflows/covector-version-or-publish.yml +++ b/.github/workflows/covector-version-or-publish.yml @@ -103,7 +103,7 @@ jobs: # Moving docs for Indexation - name: copy docs working-directory: ./tauri - run: mv docs/sidebar.json ../tauri-docs/sidebars/core.json && cp -r docs ../tauri-docs/docs/en + run: mv docs/sidebar.json ../tauri-docs/sidebars/core.json && cp -r docs ../tauri-docs/docs/en && mv ARCHITECTURE.md ../tauri-docs/docs/en/about/architecture.md # Indexing - name: meilisearch indexation diff --git a/.github/workflows/update-docs.yml b/.github/workflows/update-docs.yml index fa1a1cb1b..8c84cfbaa 100644 --- a/.github/workflows/update-docs.yml +++ b/.github/workflows/update-docs.yml @@ -73,7 +73,7 @@ jobs: # Moving docs for Indexation - name: copy docs working-directory: ./tauri - run: mv docs/sidebar.json ${{ github.workspace }}/tauri-docs/sidebars/core.json && cp -r docs/* ${{ github.workspace }}/tauri-docs/docs/en + run: mv docs/sidebar.json ${{ github.workspace }}/tauri-docs/sidebars/core.json && cp -r docs/* ${{ github.workspace }}/tauri-docs/docs/en && mv ARCHITECTURE.md ${{ github.workspace }}/tauri-docs/docs/en/about/architecture.md # Indexing - name: meilisearch indexation diff --git a/docs/getting-started/intro.md b/docs/getting-started/intro.md index 7c4c4bfc6..a9a25e802 100644 --- a/docs/getting-started/intro.md +++ b/docs/getting-started/intro.md @@ -13,7 +13,7 @@ Anything that can be displayed on a website, can be displayed in a Tauri webview Developers are free to build the web front-end displayed in a Webview through Tauri with any web frameworks of their choice! **Developers can even extend the default API** with their own functionality and bridge the Webview and Rust-based backend easily! -The Architecture is more fully described in [Architecture](https://github.com/tauri-apps/tauri/blob/dev/ARCHITECTURE.md). +The Architecture is more fully described in [Architecture](/docs/about/architecture). This guide will help you create your first Tauri app. It should only take about 10 minutes, although it could take longer if you have a slower internet connection.