We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06760f0 commit 67ca0f5Copy full SHA for 67ca0f5
1 file changed
.github/workflows/backfill_wheels.yml
@@ -23,7 +23,7 @@ jobs:
23
- name: Run backfill
24
env:
25
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
26
- PYPI_API_TOKEN: ${{ secrets.PYPI_API_TOKEN }}
+ PYPI_API_TOKEN: ${{ secrets.OMNIPKG_DEPLOY_KEY }}
27
REPO: ${{ github.repository }}
28
DRY_RUN: ${{ inputs.dry_run }}
29
MAX_PAGES: ${{ inputs.max_pages }}
@@ -334,7 +334,9 @@ jobs:
334
print(f" ✅ uploaded {len(whl_files)} wheels for {version}")
335
pypi_uploaded += len(whl_files)
336
else:
337
- print(f" ❌ twine failed: {result.stderr[-500:]}")
+ print(f" ❌ twine failed (rc={result.returncode})")
338
+ print(f" STDOUT: {result.stdout[-2000:]}")
339
+ print(f" STDERR: {result.stderr[-2000:]}")
340
pypi_failed += len(whl_files)
341
342
if not dry_run:
0 commit comments