Skip to content

Commit

Permalink
Adjust paths in docs workflow
Browse files Browse the repository at this point in the history
We don't perform actions in the client subdirectory anymore.
  • Loading branch information
nicholasjng committed Oct 1, 2024
1 parent 9051391 commit a34048d
Showing 1 changed file with 1 addition and 7 deletions.
8 changes: 1 addition & 7 deletions .github/workflows/docs.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,6 @@ on:
branches:
- main

defaults:
run:
working-directory: client

permissions:
contents: write

Expand All @@ -30,19 +26,17 @@ 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
with:
version: development
pre_release: true # include pre-release notification banner
push: true
workingDirectory: "client"

0 comments on commit a34048d

Please sign in to comment.