We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b2e99e commit d775a8eCopy full SHA for d775a8e
.github/workflows/_release.yml
@@ -14,6 +14,7 @@ on:
14
workflow_dispatch:
15
inputs:
16
working-directory:
17
+ description: source code directory to build and publish, e.g. libs/oci or libs/oracledb
18
required: true
19
type: string
20
default: 'libs/oci'
@@ -84,7 +85,7 @@ jobs:
84
85
TWINE_PASSWORD: ${{ secrets.GH_LC_OCI_TESTPYPI_TOKEN }}
86
run: |
87
pip install twine
- 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
89
90
pre-release-checks:
91
needs:
0 commit comments