Skip to content

Commit

Permalink
Remove tag verification in pypi upload action
Browse files Browse the repository at this point in the history
  • Loading branch information
vdutor authored Nov 8, 2021
1 parent 9c4b9b9 commit c772665
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions .github/workflows/upload-pypi.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit c772665

Please sign in to comment.