Skip to content

Latest commit

 

History

History
63 lines (43 loc) · 1.17 KB

MAINTAINERS.md

File metadata and controls

63 lines (43 loc) · 1.17 KB

MAINTAINERS

This document serves as a guide for maintainers. For users wishes to contribute to this repository, please see CONTRIBUTING.md.

Release commands

Perform a clean build:

python -m build

Verify packages can be published:

twine check dist/*

Sign the packages:

gpg --detach-sign -a dist/releng-tool-*.gz
gpg --detach-sign -a dist/releng_tool-*.whl

Sanity check the signed packages:

gpg --verify dist/releng-tool-*.gz.asc
gpg --verify dist/releng_tool-*.whl.asc

Publish the packages:

twine upload --repository releng-tool dist/*

Tag/push the release tag:

git tag -s -a v<version> <hash> -m "releng-tool <version>"
git verify-tag <tag>
git push origin <tag>

Generate hashes from the release:

cd dist
sha256sum -b * >releng-tool-<version>.sha256sum

Create a new release entry on GitHub:

🛈 [View announcement][announcement] ෴ _https://github.com/releng-tool/releng-tool/compare/v<TAG>...v<TAG>_

<bullet points from changelog>

[announcement]: https://docs.releng.io/news/<announcement-page>/