Skip to content

Push CPU Binary Nightly #729

Push CPU Binary Nightly

Push CPU Binary Nightly #729

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:

Check failure on line 14 in .github/workflows/nightly_build_cpu.yaml

View workflow run for this annotation

GitHub Actions / Push CPU Binary Nightly

Invalid workflow file

The workflow is not valid. .github/workflows/nightly_build_cpu.yaml (Line: 14, Col: 3): Error calling workflow 'pytorch/torchsnapshot/.github/workflows/run_tests.yaml@987bb5b7ed46628e4510de7cf4bae17e246ffc50'. The nested job 's3_integration_test' is requesting 'id-token: write', but is only allowed 'id-token: none'. .github/workflows/nightly_build_cpu.yaml (Line: 14, Col: 3): Error calling workflow 'pytorch/torchsnapshot/.github/workflows/run_tests.yaml@987bb5b7ed46628e4510de7cf4bae17e246ffc50'. The nested job 'gcs_integration_tests' is requesting 'id-token: write', but is only allowed 'id-token: none'.
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