diff --git a/.github/workflows/docs.yaml b/.github/workflows/docs.yaml index 7cfb5cf..6fed994 100644 --- a/.github/workflows/docs.yaml +++ b/.github/workflows/docs.yaml @@ -10,10 +10,6 @@ on: branches: - main -defaults: - run: - working-directory: client - permissions: contents: write @@ -30,14 +26,13 @@ jobs: uses: ./.github/actions/python-deps with: pythonVersion: "3.11" - workingDirectory: "client" - name: Build pre-release documentation run: uv run mkdocs build - name: Archive built documentation uses: actions/upload-artifact@v4 with: name: docs - path: client/public/docs + path: public/docs - name: Deploy pre-release documentation if: ${{ github.ref_name == 'main'}} uses: ./.github/actions/mike-docs @@ -45,4 +40,3 @@ jobs: version: development pre_release: true # include pre-release notification banner push: true - workingDirectory: "client"