Skip to content

Commit

Permalink
Renamed test-deploy job to test_docs_deploy and added --prefix flag t…
Browse files Browse the repository at this point in the history
…o build_docs job
  • Loading branch information
kelvinmwinuka committed Sep 10, 2024
1 parent a151d02 commit 25161a9
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,13 +91,13 @@ jobs:
cache: pnpm
cache-dependency-path: ./docs/pnpm-lock.yaml
- name: Install dependencies
run: pnpm install
run: pnpm --prefix docs install
- name: Build website
run: pnpm run build
run: pnpm --prefix docs run build
- name: Upload Build Artifact
uses: actions/upload-pages-artifact@v3
with:
path: ./docs/build
path: docs/build

publish_docs:
name: Publish docusaurus docs to GitHub pages
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ on:
# https://docs.github.com/en/actions/using-workflows/workflow-syntax-for-github-actions#on

jobs:
test-deploy:
name: Test deployment
test_docs_deploy:
name: Test docusaurus documentation deployment
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit 25161a9

Please sign in to comment.