From eedc5c6b79813a6e6a81caa12701b22dae3fd891 Mon Sep 17 00:00:00 2001 From: Yannick Jadoul Date: Wed, 3 Jun 2020 19:01:01 +0200 Subject: [PATCH] Remove twine check from examples/github-deploy.yml as it's now integrated into the pypa/gh-action-pypi-publish action --- examples/github-deploy.yml | 10 ---------- 1 file changed, 10 deletions(-) diff --git a/examples/github-deploy.yml b/examples/github-deploy.yml index 7370b6cd..0aa4dfed 100644 --- a/examples/github-deploy.yml +++ b/examples/github-deploy.yml @@ -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__