refactor: перенос docusaurus в корень, так как больше ничего не планируется в этой репе держать

Reviewed-on: #2
Co-authored-by: Arswarog <arswarog@yandex.ru>
Co-committed-by: Arswarog <arswarog@yandex.ru>
This commit was merged in pull request #2.
This commit is contained in:
2026-06-16 15:04:58 +03:00
parent 8250d61f56
commit f8f100633f
19 changed files with 26 additions and 25 deletions
+22 -1
View File
@@ -1 +1,22 @@
.idea # Dependencies
/node_modules
# Production
/build
# Generated files
.docusaurus
.cache-loader
# Misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*
.idea
View File
+4 -4
View File
@@ -47,24 +47,24 @@ runs:
- name: Copy docs into Docusaurus - name: Copy docs into Docusaurus
shell: bash shell: bash
run: | run: |
DOCUSAURUS_DIR="${{ github.action_path }}/docusaurus" DOCUSAURUS_DIR="${{ github.action_path }}"
rm -rf "${DOCUSAURUS_DIR}/docs" rm -rf "${DOCUSAURUS_DIR}/docs"
cp -r "${{ inputs.docs-path }}" "${DOCUSAURUS_DIR}/docs" cp -r "${{ inputs.docs-path }}" "${DOCUSAURUS_DIR}/docs"
cp "${{ github.workspace }}/.docuservix.yml" "${DOCUSAURUS_DIR}" cp "${{ github.workspace }}/.docuservix.yml" "${DOCUSAURUS_DIR}"
- name: Prepare docs - name: Prepare docs
shell: bash shell: bash
working-directory: ${{ github.action_path }}/docusaurus working-directory: ${{ github.action_path }}
run: node scripts/prepare-docs.mjs run: node scripts/prepare-docs.mjs
- name: Install Docusaurus dependencies - name: Install Docusaurus dependencies
shell: bash shell: bash
working-directory: ${{ github.action_path }}/docusaurus working-directory: ${{ github.action_path }}
run: yarn install --frozen-lockfile run: yarn install --frozen-lockfile
- name: Build docs - name: Build docs
shell: bash shell: bash
working-directory: ${{ github.action_path }}/docusaurus working-directory: ${{ github.action_path }}
env: env:
DOCUSERVIX_ON_BROKEN_LINKS: ${{ inputs.on-broken-links }} DOCUSERVIX_ON_BROKEN_LINKS: ${{ inputs.on-broken-links }}
DOCUSERVIX_URL: ${{ env.TARGET_URL }} DOCUSERVIX_URL: ${{ env.TARGET_URL }}
-20
View File
@@ -1,20 +0,0 @@
# Dependencies
/node_modules
# Production
/build
# Generated files
.docusaurus
.cache-loader
# Misc
.DS_Store
.env.local
.env.development.local
.env.test.local
.env.production.local
npm-debug.log*
yarn-debug.log*
yarn-error.log*

Before

Width:  |  Height:  |  Size: 5.0 KiB

After

Width:  |  Height:  |  Size: 5.0 KiB

Before

Width:  |  Height:  |  Size: 3.5 KiB

After

Width:  |  Height:  |  Size: 3.5 KiB

Before

Width:  |  Height:  |  Size: 6.3 KiB

After

Width:  |  Height:  |  Size: 6.3 KiB

View File