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
- Copy the new jpg, pdf and ai files into the landscape directory.
cd landscape
rm CloudNativeLandscape_latest.*
to delete the former latest versions.cp CloudNativeLandscape_v###.jpg CloudNativeLandscape_latest.jpg
with###
replaced by the new version number, like0.9.8
.cp CloudNativeLandscape_v###.pdf CloudNativeLandscape_latest.pdf
cp CloudNativeLandscape_v###.ai CloudNativeLandscape_latest.ai
git add -A
git commit -sm 'Version ###'
git tag ###
git push