Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 696 Bytes

release.md

File metadata and controls

33 lines (22 loc) · 696 Bytes

release

pypi

pre-requisite

  • testpypi and pypi TOKEN
# build
python3.9 -m build

# release to TEST https://test.pypi.org/project/s3-pull-processor/
python3.9 -m twine upload --repository testpypi dist/*

# release to PROD
python3.9 -m twine upload dist/*

ghcr.io container image

pre-requisite

  • CR_PAT github TOKEN
echo $CR_PAT | docker login ghcr.io -u eduardocerqueira --password-stdin
docker tag f849ee50d8b1 ghcr.io/eduardocerqueira/s3-pull-processor:latest
docker push ghcr.io/eduardocerqueira/s3-pull-processor:latest