Skip to content

Upload and build nightly wheels #100

Upload and build nightly wheels

Upload and build nightly wheels #100

Workflow file for this run

name: Upload and build nightly wheels
on:
workflow_dispatch:
schedule:
- cron: "0 0 * * *"
jobs:
cron:
# Do not attempt to upload nightly through forks
if: github.repository_owner == 'networkx'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v5
with:
python-version: "3.10"
- name: Install Python requirements
run: |
python -m pip install -r requirements/release.txt
- name: Build a wheel and a sdist
run: |
python -m build .
- name: Verify the distribution
run: twine check --strict dist/*
- name: List contents of sdist
run: python -m tarfile --list dist/networkx-*.tar.gz
- name: List contents of wheel
run: python -m zipfile --list dist/networkx-*.whl
- name: Upload nighlty wheel
uses: scientific-python/upload-nightly-action@5fb764c5bce1ac2297084c0f7161b1919f17c74f # 0.2.0
with:
anaconda_nightly_upload_token: ${{ secrets.ANACONDA_NIGHTLY }}
artifacts_path: dist/