Skip to content

Latest commit

 

History

History
18 lines (14 loc) · 682 Bytes

UPDATE.md

File metadata and controls

18 lines (14 loc) · 682 Bytes

How To Make Updates

This is only necessary once, but updates git to upload tags on push:

git config --global push.followTags true

Each time there is a new update

  1. Copy the new jpg, pdf and ai files into the landscape directory.
  2. cd landscape
  3. rm CloudNativeLandscape_latest.* to delete the former latest versions.
  4. cp CloudNativeLandscape_v###.jpg CloudNativeLandscape_latest.jpg with ### replaced by the new version number, like 0.9.8.
  5. cp CloudNativeLandscape_v###.pdf CloudNativeLandscape_latest.pdf
  6. cp CloudNativeLandscape_v###.ai CloudNativeLandscape_latest.ai
  7. git add -A
  8. git commit -sm 'Version ###'
  9. git tag ###
  10. git push