Fix incorrect stage name for wheel jobs (#565)

In the recently merged #168 a small oversight was made in the last
revision to that PR. The name of the stage was updated from wheels to
deploy, but the stage listed for the individual jobs was never updated.
This commit corrects the oversight and uses a consistent stage name for
the new jobs.
This commit is contained in:
Matthew Treinish 2020-01-31 12:16:57 -05:00 committed by GitHub
parent 7923aae21d
commit 8d374e32f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 4 deletions

View File

@ -223,11 +223,11 @@ jobs:
env:
- MPLBACKEND=ps
- PYTHON_VERSION=3.5.6
# "wheels" stage
# "deploy" stage
##########################################################################
#
- name: Release Linux Wheel Builds and Upload
stage: wheels
stage: deploy
language: python
python: 3.7
os: linux
@ -248,7 +248,7 @@ jobs:
- cibuildwheel --output-dir wheelhouse
- twine upload wheelhouse/*
- name: sdist Build and Upload
stage: wheels
stage: deploy
if: tag IS present
<<: *stage_linux
env:
@ -261,7 +261,7 @@ jobs:
- twine upload dist/*
- name: Release MacOS Wheel Builds and Upload
os: osx
stage: wheels
stage: deploy
if: tag IS present
env:
- CIBW_BEFORE_BUILD="pip install -U Cython pip virtualenv pybind11"