From c772665e6e0baf25f80ce04f1b5e7f7b86b28c66 Mon Sep 17 00:00:00 2001 From: Vincent Dutordoir Date: Mon, 8 Nov 2021 16:08:41 +0000 Subject: [PATCH] Remove tag verification in pypi upload action --- .github/workflows/upload-pypi.yaml | 8 -------- 1 file changed, 8 deletions(-) diff --git a/.github/workflows/upload-pypi.yaml b/.github/workflows/upload-pypi.yaml index 4f4a2aff..8f57acb0 100644 --- a/.github/workflows/upload-pypi.yaml +++ b/.github/workflows/upload-pypi.yaml @@ -28,14 +28,6 @@ jobs: - uses: actions/setup-python@v2 with: python-version: 3.7 - - name: Verify git tag vs. VERSION - run: | - VERSION="v$(cat VERSION | tr -d '\t\r\n ')" - TAG="${GITHUB_REF/refs\/tags\//}" - if [ "$VERSION" != "$TAG" ]; then - echo "The package version ($VERSION) and the latest tag version ($TAG) are different" - exit 1 - fi - name: Install twine and wheel run: | pip install twine wheel