Skip to content
Snippets Groups Projects
Unverified Commit 0af02f21 authored by James Briggs's avatar James Briggs Committed by GitHub
Browse files

Merge pull request #555 from aurelio-labs/james/migration-doc

fix: getting started docs
parents 3539c2b6 6fa15154
No related branches found
No related tags found
No related merge requests found
...@@ -44,16 +44,14 @@ jobs: ...@@ -44,16 +44,14 @@ jobs:
- name: Copy and rename root docs - name: Copy and rename root docs
run: | run: |
ROOT_DIR=$(pwd) ROOT_DIR=$(pwd)
rm -rf temp-docs/semantic-router
mkdir -p temp-docs/semantic-router/
# Find and copy all md files from ref # Find and copy all md files from ref
cd docs cd docs/getting-started
find . -type f -name "*.md" | while read file; do find . -type f -name "*.md" | while read file; do
dir=$(dirname "$file") dir=$(dirname "$file")
echo "Processing file: $file in directory: $dir" echo "Processing file: $file in directory: $dir"
mkdir -p "$ROOT_DIR/temp-docs/semantic-router/$dir" mkdir -p "$ROOT_DIR/docs/getting-started/$dir"
cp "$file" "$ROOT_DIR/temp-docs/semantic-router/${file%.md}.mdx" cp "$file" "$ROOT_DIR/docs/getting-started/${file%.md}.mdx"
done done
- name: Copy and rename reference docs - name: Copy and rename reference docs
......
File moved
File moved
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment