File tree Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Expand file tree Collapse file tree 1 file changed +37
-0
lines changed Original file line number Diff line number Diff line change 1+ name : Nightly Wheels
2+
3+ on :
4+ schedule :
5+ # Run nightly at 2 AM UTC
6+ - cron : ' 0 2 * * *'
7+ workflow_dispatch :
8+
9+ jobs :
10+ build_and_upload_nightly :
11+ name : Build and upload nightly wheels
12+ runs-on : ubuntu-latest
13+
14+ steps :
15+ - uses : actions/checkout@v5
16+ with :
17+ submodules : true
18+ fetch-depth : 0
19+
20+ - uses : actions/setup-python@v6
21+ name : Install Python
22+ with :
23+ python-version : ' 3.13'
24+
25+ - name : Install build dependencies
26+ run : |
27+ python -m pip install --upgrade pip
28+ pip install hatch
29+
30+ - name : Build wheel and sdist
31+ run : hatch build
32+
33+ - name : Upload nightly wheels
34+ uses : scientific-python/upload-nightly-action@82396a2ed4269ba06c6b2988bb4fd7672769da06
35+ with :
36+ artifacts_path : dist
37+ anaconda_nightly_upload_token : ${{ secrets.ANACONDA_ORG_UPLOAD_TOKEN }}
You can’t perform that action at this time.
0 commit comments