2
0

building_release_archive.txt 372 B

123456789101112131415161718192021222324
  1. - Update HISTORY file, commit
  2. - First tag the release, say 2.2.0c
  3. git tag 2.2.0c
  4. Then push the tag:
  5. git push --tags
  6. - build the release archive:
  7. git archive -o /tmp/cde-src-[version tag].tar.gz [version tag] \
  8. --prefix cde-[version tag]/
  9. where [version tag] is something like 2.2.0c
  10. ## look into signed tags?
  11. git tag -s 2.2.1 -m '2.2.1 release'