Remove twine check from examples/github-deploy.yml as it's now integrated into the pypa/gh-action-pypi-publish action

This commit is contained in:
Yannick Jadoul
2020-06-03 19:01:01 +02:00
parent 4c3cbf702c
commit eedc5c6b79
-10
View File
@@ -57,21 +57,11 @@ jobs:
needs: [build_wheels, build_sdist]
runs-on: ubuntu-latest
steps:
- uses: actions/setup-python@v2
with:
python-version: "3.8"
- name: Install dependencies
run: python -m pip install twine
- uses: actions/download-artifact@v2
with:
name: artifact
path: dist
- run: twine check dist/*
- uses: pypa/gh-action-pypi-publish@master
with:
user: __token__