diff --git a/.wiki/API-Reference.md b/.github/wiki/API-Reference.md similarity index 100% rename from .wiki/API-Reference.md rename to .github/wiki/API-Reference.md diff --git a/.wiki/Home.md b/.github/wiki/Home.md similarity index 100% rename from .wiki/Home.md rename to .github/wiki/Home.md diff --git a/.github/workflows/wiki-sync.yml b/.github/workflows/wiki-sync.yml index 974c6c6..69b3350 100644 --- a/.github/workflows/wiki-sync.yml +++ b/.github/workflows/wiki-sync.yml @@ -3,7 +3,7 @@ name: Sync Wiki on: push: branches: [main] - paths: [".wiki/**"] + paths: [".github/wiki/**"] workflow_dispatch: permissions: @@ -29,7 +29,7 @@ jobs: - name: Sync wiki pages if: steps.clone_wiki.outputs.wiki_exists == 'true' run: | - cp .wiki/*.md .wiki-remote/ + cp .github/wiki/*.md .wiki-remote/ cd .wiki-remote git config user.name "github-actions[bot]" git config user.email "github-actions[bot]@users.noreply.github.com"