Skip to content

Push CPU Binary Nightly #739

Push CPU Binary Nightly

Push CPU Binary Nightly #739

name: Push CPU Binary Nightly
on:
# run every day at 11:15am
schedule:
- cron: '15 11 * * *'
# or manually trigger it
workflow_dispatch:
inputs:
append_to_version:
description: "Optional value to append to version string"
jobs:
run_tests:
permissions:
id-token: write
contents: read
uses: ./.github/workflows/run_tests.yaml
secrets: inherit
upload_to_pypi:
needs: run_tests
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v2
- name: Setup conda env
uses: conda-incubator/setup-miniconda@v2
with:
miniconda-version: "latest"
activate-environment: test
python-version: 3.8
- name: Install dependencies
shell: bash -l {0}
run: |
set -eux
conda activate test
conda install pytorch cpuonly -c pytorch-nightly
pip install -r requirements.txt
pip install -r dev-requirements.txt
pip install --no-build-isolation -e ".[dev]"
- name: Upload to PyPI
shell: bash -l {0}
env:
PYPI_USER: ${{ secrets.PYPI_USER }}
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
run: |
set -eux
conda activate test
pip install twine
python setup.py --nightly --append-to-version=${{ github.event.inputs.append_to_version }} sdist bdist_wheel
twine upload --username "$PYPI_USER" --password "$PYPI_TOKEN" dist/* --verbose