Skip to content

Latest commit

 

History

History
16 lines (15 loc) · 592 Bytes

Releasing.md

File metadata and controls

16 lines (15 loc) · 592 Bytes

Creating a Release

  • create branch release/1.x.y
  • update debian/changelog
  • create PR, merge when approved
  • on updated master, create release:
version=$(dpkg-parsechangelog -S Version)
echo Releasing prod version $version
git tag -a v$version -m 'aptly: release $version'
git push origin v$version master