##// END OF EJS Templates
Update nightly-wheel-build.yml
Matthias Bussonnier -
Show More
@@ -1,29 +1,30 b''
1 name: Nightly Wheel builder
1 2 on:
2 3 workflow_dispatch:
3 name: Nightly Wheel builder
4 4
5 jobs:
5 6 upload_anaconda:
6 7 name: Upload to Anaconda
7 8 runs-on: ubuntu-latest
8 9 # The artifacts cannot be uploaded on PRs
9 10 if: github.event_name != 'pull_request'
10 11
11 12 steps:
12 13 - uses: actions/checkout@v3
13 14 - name: Set up Python
14 15 uses: actions/setup-python@v4
15 16 with:
16 17 python-version: "3.10"
17 18 cache: pip
18 19 cache-dependency-path: |
19 20 setup.cfg
20 21 - name: Try building with Python build
21 22 if: runner.os != 'Windows' # setup.py does not support sdist on Windows
22 23 run: |
23 24 python -m build
24 25
25 26 - name: Upload wheel
26 uses: scientific-python/upload-nightly-wheel
27 uses: scientific-python/upload-nightly-wheel@latest
27 28 with:
28 29 artifact-names: dist/*.whl
29 30 anaconda-nightly-upload-token: ${secrets.UPLOAD_TOKEN}
General Comments 0
You need to be logged in to leave comments. Login now