Skip to content

Commit d775a8e

Browse files
fix test pypi release
1 parent 8b2e99e commit d775a8e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
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:

0 commit comments

Comments
 (0)