added ARCHITECTURE to update-docs workflow, fixes #2088 (#2773)

Co-authored-by: fack <fack>
This commit is contained in:
facklambda 2021-10-21 07:06:29 -05:00 committed by GitHub
parent 23956ef39d
commit ff2c9fafa4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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

View File

@ -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.