Skip to content

Commit

Permalink
Test building wheels again
Browse files Browse the repository at this point in the history
  • Loading branch information
makaimann committed Feb 21, 2025
1 parent 80eb6e3 commit 723e84c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/cibuildwheel.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,9 @@ name: Build and Upload Wheels
on:
release:
types: [published]
push:
branches:
- debug
schedule:
- cron: '0 1 * * *'
workflow_dispatch:
Expand Down Expand Up @@ -104,7 +107,8 @@ jobs:
- name: Upload wheels to TestPyPI
if: >
github.event_name == 'workflow_dispatch' &&
github.event.inputs.deploy_target == 'Test PyPI'
github.event.inputs.deploy_target == 'Test PyPI' ||
(github.event_name == 'push' && github.ref == 'refs/heads/debug')
env:
TWINE_USERNAME: __token__
TWINE_PASSWORD: ${{ secrets.TEST_PYPI_TOKEN }}
Expand Down

0 comments on commit 723e84c

Please sign in to comment.