Skip to content

Commit

Permalink
Also disable UV for PROD cache build in release branches
Browse files Browse the repository at this point in the history
A follow up after apache#38749 - we should also disable UV for cache
building in release branches. PROD images are building just fine,
but cache building for 3.11 fails for the same reason and we also
have to disable UV for the cache build.
  • Loading branch information
potiuk committed Apr 4, 2024
1 parent b094da4 commit 7b68ba2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/push-image-cache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
GITHUB_USERNAME: ${{ github.actor }}
INSTALL_MYSQL_CLIENT_TYPE: ${{ inputs.install-mysql-client-type }}
UPGRADE_TO_NEWER_DEPENDENCIES: "false"
USE_UV: ${{ inputs.use-uv }}
USE_UV: ${{ inputs.branch == 'main' && inputs.use-uv || 'false' }}
VERBOSE: "true"
VERSION_SUFFIX_FOR_PYPI: "dev0"
if: inputs.include-prod-images == 'true'
Expand Down

0 comments on commit 7b68ba2

Please sign in to comment.