From 32e200982ec7a895c97ed9c4ec42ceeb6bb4556b Mon Sep 17 00:00:00 2001 From: Arthur Cheng Date: Wed, 5 Nov 2025 13:34:01 -0800 Subject: [PATCH 1/3] add missing poetry build process in release workflow --- .github/workflows/_release.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/_release.yml b/.github/workflows/_release.yml index 89157a6..032aba8 100644 --- a/.github/workflows/_release.yml +++ b/.github/workflows/_release.yml @@ -81,6 +81,14 @@ jobs: steps: - uses: actions/checkout@v4 + - name: Set up Python + Poetry ${{ env.POETRY_VERSION }} + uses: "./.github/actions/poetry_setup" + with: + python-version: ${{ env.PYTHON_VERSION }} + poetry-version: ${{ env.POETRY_VERSION }} + working-directory: ${{ inputs.working-directory }} + cache-key: release + - name: Build project for distribution run: poetry build working-directory: ${{ inputs.working-directory }} From 6af106186167890b238e19dc1148dde147679c51 Mon Sep 17 00:00:00 2001 From: Arthur Cheng Date: Wed, 5 Nov 2025 13:45:27 -0800 Subject: [PATCH 2/3] temp change to test the workflow --- .github/workflows/_release.yml | 2 +- libs/oci/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/_release.yml b/.github/workflows/_release.yml index 032aba8..cd54f09 100644 --- a/.github/workflows/_release.yml +++ b/.github/workflows/_release.yml @@ -71,7 +71,7 @@ jobs: build: needs: test - if: github.ref == 'refs/heads/main' + # if: github.ref == 'refs/heads/main' runs-on: ubuntu-latest outputs: diff --git a/libs/oci/pyproject.toml b/libs/oci/pyproject.toml index 2165732..117b5bd 100644 --- a/libs/oci/pyproject.toml +++ b/libs/oci/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "langchain-oci" -version = "0.1.6" +version = "0.1.6.dev1" description = "An integration package connecting OCI and LangChain" authors = [] readme = "README.md" From 542eda6fef3314452f5147289866b12c1c02e7f2 Mon Sep 17 00:00:00 2001 From: Arthur Cheng Date: Wed, 5 Nov 2025 14:00:06 -0800 Subject: [PATCH 3/3] Revert "temp change to test the workflow" This reverts commit 6af106186167890b238e19dc1148dde147679c51. --- .github/workflows/_release.yml | 2 +- libs/oci/pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/_release.yml b/.github/workflows/_release.yml index cd54f09..032aba8 100644 --- a/.github/workflows/_release.yml +++ b/.github/workflows/_release.yml @@ -71,7 +71,7 @@ jobs: build: needs: test - # if: github.ref == 'refs/heads/main' + if: github.ref == 'refs/heads/main' runs-on: ubuntu-latest outputs: diff --git a/libs/oci/pyproject.toml b/libs/oci/pyproject.toml index 117b5bd..2165732 100644 --- a/libs/oci/pyproject.toml +++ b/libs/oci/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "langchain-oci" -version = "0.1.6.dev1" +version = "0.1.6" description = "An integration package connecting OCI and LangChain" authors = [] readme = "README.md"