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/Architecture.md b/.github/wiki/Architecture.md similarity index 100% rename from .wiki/Architecture.md rename to .github/wiki/Architecture.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 2bf6fa9..9fa1709 100644 --- a/.github/workflows/wiki-sync.yml +++ b/.github/workflows/wiki-sync.yml @@ -4,14 +4,14 @@ on: push: branches: [main] paths: - - '.wiki/**' + - '.github/wiki/**' permissions: contents: write jobs: sync: - name: Sync .wiki/ to GitHub Wiki + name: Sync .github/wiki/ to GitHub Wiki runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 @@ -19,7 +19,7 @@ jobs: - name: Sync wiki pages uses: Andrew-Chen-Wang/github-wiki-action@v4 with: - path: .wiki/ + path: .github/wiki/ env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_REPOSITORY: ${{ github.repository }}