We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e14f82 commit 8f615ebCopy full SHA for 8f615eb
.github/workflows/wheels.yml
@@ -1,5 +1,11 @@
1
name: Publish sdist and wheels
2
3
+env:
4
+ # A tag or branch name or a commit hash for the numpy/numpy repo, for which
5
+ # to build wheels. This is normally set to `main` in the main branch of this
6
+ # repo, and to a tag name (e.g., `v2.3.2`) on a release branch.
7
+ SOURCE_REF_TO_BUILD: main
8
+
9
on:
10
schedule:
11
# ┌───────────── minute (0 - 59)
@@ -84,6 +90,7 @@ jobs:
84
90
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
85
91
with:
86
92
repository: numpy/numpy
93
+ ref: ${{ env.SOURCE_REF_TO_BUILD }}
87
94
path: numpy-src
88
95
submodules: true
89
96
persist-credentials: false
0 commit comments