Skip to content

Commit 4299ec1

Browse files
authored
Fix CI release main python version envvar (#1720)
1 parent 8a5431b commit 4299ec1

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

.github/workflows/ci_release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,6 @@ on:
2929

3030
env:
3131
DOCUMENTATION_CNAME: 'dpf.docs.pyansys.com'
32-
MAIN_PYTHON_VERSION: '3.9'
3332

3433
jobs:
3534
debug:
@@ -79,7 +78,7 @@ jobs:
7978
with:
8079
ANSYS_VERSION: ${{ github.event.inputs.ansys_version || '251' }}
8180
python_versions: '["3.9", "3.10", "3.11"]'
82-
wheel: ${{ matrix.python-version == env.MAIN_PYTHON_VERSION }}
81+
wheel: ${{ matrix.python-version == '3.9' }}
8382
wheelhouse: true
8483
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }}
8584
secrets: inherit
@@ -89,7 +88,7 @@ jobs:
8988
with:
9089
ANSYS_VERSION: ${{ github.event.inputs.ansys_version || '251' }}
9190
python_versions: '["3.9", "3.10", "3.11"]'
92-
wheel: ${{ matrix.python-version == env.MAIN_PYTHON_VERSION }}
91+
wheel: ${{ matrix.python-version == '3.9' }}
9392
wheelhouse: false
9493
standalone_suffix: ${{ github.event.inputs.standalone_branch_suffix || '.pre0' }}
9594
test_any: true

0 commit comments

Comments
 (0)