Skip to content

Commit

Permalink
Add deployment script to repository
Browse files Browse the repository at this point in the history
  • Loading branch information
fboes committed Jun 18, 2019
1 parent e75d9e8 commit 111e007
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 1 deletion.
1 change: 0 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ Change log
* 🎁 Switch ICAO airport code finder to https://opennav.com/search because of approach plates
* 🎁 Starting airport finder will open currently active airport code


1.2.7
-----

Expand Down
16 changes: 16 additions & 0 deletions publish.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
#!/bin/bash
set -e

echo "Latest tag: "
git describe --tags
read -p 'Enter new semver string (e.g. "1.0.0"): ' VERSION

git merge master
git push
git checkout master
git merge develop
git tag -a "v${VERSION}" -m "${VERSION}"
git push && git push --tag
git checkout develop
start "https://github.com/fboes/aerofly-wettergeraet/releases"
start "https://flight-sim.org/filebase/index.php?file/439-aerofly-wetterger%C3%A4t/"

0 comments on commit 111e007

Please sign in to comment.