Skip to content

Commit ca93afd

Browse files
[MISC]Fix Release Workflow and Bump Up Version (#32)
* fix test pypi release * comment out build condition check * uncomment build condition check * bump up langchain-oci version to 0.1.5
1 parent 8b2e99e commit ca93afd

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/_release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ on:
1414
workflow_dispatch:
1515
inputs:
1616
working-directory:
17+
description: source code directory to build and publish, e.g. libs/oci or libs/oracledb
1718
required: true
1819
type: string
1920
default: 'libs/oci'
@@ -84,7 +85,7 @@ jobs:
8485
TWINE_PASSWORD: ${{ secrets.GH_LC_OCI_TESTPYPI_TOKEN }}
8586
run: |
8687
pip install twine
87-
twine upload --repository-url https://test.pypi.org/legacy/ ${{ inputs.working-directory }}/dist/* -u $TWINE_USERNAME -p $TWINE_PASSWORD
88+
twine upload -r testpypi ${{ inputs.working-directory }}/dist/* -u $TWINE_USERNAME -p $TWINE_PASSWORD --verbose
8889
8990
pre-release-checks:
9091
needs:

libs/oci/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "langchain-oci"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
description = "An integration package connecting OCI and LangChain"
55
authors = []
66
readme = "README.md"

0 commit comments

Comments
 (0)