From 6c6cb55510b8bf5d35f5790dd3243622cc513760 Mon Sep 17 00:00:00 2001 From: Trayan Azarov Date: Fri, 14 Jun 2024 22:19:22 +0200 Subject: [PATCH] [BLD]: Fixing working dir for package.json update (#2342) ## Description of changes *Summarize the changes made by this PR.* - Improvements & Bug fixes - ... - New functionality - ... ## Test plan *How are these changes tested?* - [ ] Tests pass locally with `pytest` for python, `yarn test` for js, `cargo test` for rust ## Documentation Changes *Are all docstrings for user-facing APIs updated if required? Do we need to make documentation changes in the [docs repository](https://github.com/chroma-core/docs)?* --- .github/workflows/release-dev-javascript-client.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/release-dev-javascript-client.yml b/.github/workflows/release-dev-javascript-client.yml index 9d9e228baa1..64b05faacc4 100644 --- a/.github/workflows/release-dev-javascript-client.yml +++ b/.github/workflows/release-dev-javascript-client.yml @@ -60,6 +60,7 @@ jobs: ORG_NAME="@chroma-core" PACKAGE_NAME=$(jq -r '.name' package.json) jq --arg org "$ORG_NAME" --arg name "$PACKAGE_NAME" '.name = "\($org)/\($name)"' package.json > tmp.$$.json && mv tmp.$$.json package.json + working-directory: ./clients/js/ - name: Test & publish run: npm run db:run && PORT=8001 npm run $NPM_SCRIPT working-directory: ./clients/js/