summaryrefslogtreecommitdiff
path: root/.github/workflows/build_wheels_weekly.yml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/build_wheels_weekly.yml')
-rw-r--r--.github/workflows/build_wheels_weekly.yml10
1 files changed, 4 insertions, 6 deletions
diff --git a/.github/workflows/build_wheels_weekly.yml b/.github/workflows/build_wheels_weekly.yml
index 5691d8c..32b697f 100644
--- a/.github/workflows/build_wheels_weekly.yml
+++ b/.github/workflows/build_wheels_weekly.yml
@@ -4,7 +4,10 @@ on:
workflow_dispatch:
schedule:
- cron: '30 0 * * 1'
-
+ push:
+ branches:
+ - "master"
+
jobs:
build_wheels:
name: ${{ matrix.os }}
@@ -30,11 +33,6 @@ jobs:
run: |
python -m pip install cibuildwheel==1.10.0
- - name: Install Visual C++ for Python 2.7
- if: startsWith(matrix.os, 'windows')
- run: |
- choco install vcpython27 -f -y
-
- name: Set up QEMU
if: runner.os == 'Linux'
uses: docker/setup-qemu-action@v1