From e933212a3d81b213555ce89b3750aa68bbb017c2 Mon Sep 17 00:00:00 2001 From: Erick Friis Date: Mon, 30 Oct 2023 16:58:34 -0700 Subject: [PATCH] run poetry build in working dir (#12610) Was failing because was trying to build from root: https://github.com/langchain-ai/langchain/actions/runs/6700033981/job/18205251365 --- .github/workflows/_release.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/_release.yml b/.github/workflows/_release.yml index 4c0451df8f8..35377b3db07 100644 --- a/.github/workflows/_release.yml +++ b/.github/workflows/_release.yml @@ -45,6 +45,7 @@ jobs: # https://github.com/pypa/gh-action-pypi-publish#non-goals - name: Build project for distribution run: poetry build + working-directory: ${{ inputs.working-directory }} - name: Upload build uses: actions/upload-artifact@v3