Skip to content

Latest commit

 

History

History
28 lines (19 loc) · 751 Bytes

README.md

File metadata and controls

28 lines (19 loc) · 751 Bytes

minio-keygen

CI/CD Status: Main Branch | Development Branch

Generate MinIO keys using Python. This project was created to learn GitHub Actions, Python packaging, and entrypoints.

Example

ian@Ians-MBP minio-keygen % minio-keygen                                   
Key: S9EITflKfJs4pAcOO1o
Secret: vFMzAqChF1PZea_6CMH0vmmcZglziMqDR2zXmtxI

Releasing


   # Set next version number
   export RELEASE=vx.x.x

   # Create tags
   git commit --allow-empty -m "Release $RELEASE"
   git tag -a $RELEASE -m "$RELEASE"

   # Push
   git push --tags