We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 004ca01 commit ad48732Copy full SHA for ad48732
1 file changed
.github/workflows/cleanup_pypi.yml
@@ -49,11 +49,14 @@ jobs:
49
version: "0.7.14"
50
51
- name: Run Cleanup
52
+ env:
53
+ PYTHON_UNBUFFERED: 1
54
run: |
55
set -x
56
uv sync --only-group pypi --no-install-project
57
+ # TODO: set test/prod flag according to env (inputs.environment == 'production.pypi' && '--prod' || '--test')
58
uv run --no-sync python -u -m duckdb_packaging.pypi_cleanup ${{ inputs.dry-run && '--dry' || '' }} \
- ${{ inputs.environment == 'production.pypi' && '--prod' || '--test' }} \
59
+ --test \
60
--username "${{ vars.PYPI_CLEANUP_USERNAME }}" \
61
--max-nightlies ${{ vars.PYPI_MAX_NIGHTLIES }} > cleanup_output 2>&1
62
0 commit comments