Skip to content

Commit 3d6afcd

Browse files
committed
Pass PYENV_VERSION through to build-version to fix broken builds after Dockerfile merge
1 parent 98ab7ca commit 3d6afcd

3 files changed

Lines changed: 6 additions & 1 deletion

File tree

.github/workflows/build-root.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,3 +90,4 @@ jobs:
9090
with:
9191
version: ${{ matrix.version_info.version }}
9292
tag: ${{ matrix.version_info.tag }}
93+
pyenv_version: ${{ needs.pyenv-version.outputs.pyenv_version }}

.github/workflows/build-version.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,10 @@ on:
1111
description: "Version tag to apply to Docker image (e.g. 3.14, 3.14j)"
1212
required: true
1313
type: string
14+
pyenv_version:
15+
description: "The pyenv version to use when building the builder-base stage"
16+
required: true
17+
type: string
1418

1519
jobs:
1620
build:
@@ -63,3 +67,4 @@ jobs:
6367
ghcr.io/python-discord/python-builds:${{ inputs.tag }}-${{ steps.git-sha.outputs.sha }}
6468
build-args: |
6569
PYTHON_VERSION=${{ inputs.version }}
70+
PYENV_VERSION=${{ inputs.pyenv_version }}

versions.toml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@
1616

1717
[config]
1818
versions = [
19-
"3.14",
2019
"3.14t",
2120
"3.14j",
2221
"3.13",

0 commit comments

Comments
 (0)