Skip to content

Commit

Permalink
release: fix docker image tagging and pypi upload
Browse files Browse the repository at this point in the history
  • Loading branch information
ivotron committed Sep 8, 2020
1 parent 684befa commit 7fd0e0a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .popper.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ steps:
docker push getpopper/popper:$GIT_SHA_SHORT
if [[ -n $GIT_TAG ]]; then
docker tag getpopper/popper getpopper/popper:v$GIT_TAG
docker push getpopper/popper:v$GIT_TAG
docker tag getpopper/popper getpopper/popper:$GIT_TAG
docker push getpopper/popper:$GIT_TAG
fi
- id: pypi release
Expand All @@ -54,5 +54,5 @@ steps:
pip install twine
cd src/
python setup.py sdist
twine upload -u "$PYPI_USERNAME" -p "$PYPI_PASSWORD" dist/popper-$GIT_TAG.tar.gz
twine upload -u "$PYPI_USERNAME" -p "$PYPI_PASSWORD" dist/*
fi

0 comments on commit 7fd0e0a

Please sign in to comment.