Skip to content

Commit 8eaa8ec

Browse files
adding input parameters to build wheels and publish python sdk
Signed-off-by: Francisco Javier Arceo <farceo@redhat.com>
1 parent 5927dd4 commit 8eaa8ec

File tree

2 files changed

+17
-0
lines changed

2 files changed

+17
-0
lines changed

.github/workflows/build_wheels.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,10 @@ on:
1515
required: true
1616
default: ""
1717
type: string
18+
PYPI_PASSWORD:
19+
description: 'PyPI password'
20+
required: true
21+
type: string
1822
workflow_call:
1923
inputs:
2024
custom_version: # Optional input for a custom version
@@ -26,6 +30,10 @@ on:
2630
required: true
2731
default: ""
2832
type: string
33+
PYPI_PASSWORD:
34+
description: 'PyPI password'
35+
required: true
36+
type: string
2937

3038
jobs:
3139
build-python-wheel:

.github/workflows/publish_python_sdk.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,11 @@ on:
1212
required: true
1313
default: ""
1414
type: string
15+
PYPI_PASSWORD:
16+
description: 'PyPI password'
17+
required: true
18+
type: string
19+
1520
workflow_call: # Allows trigger of the workflow from another workflow
1621
inputs:
1722
custom_version: # Optional input for a custom version
@@ -23,6 +28,10 @@ on:
2328
required: true
2429
default: ""
2530
type: string
31+
PYPI_PASSWORD:
32+
description: 'PyPI password'
33+
required: true
34+
type: string
2635

2736
jobs:
2837
build-wheels:

0 commit comments

Comments
 (0)