mirror of
https://github.com/meshtastic/firmware.git
synced 2025-02-04 03:39:56 +00:00
10 lines
381 B
Bash
10 lines
381 B
Bash
|
echo "This script is only for developers who are publishing new builds on github. Most users don't need it"
|
||
|
|
||
|
VERSION=`bin/buildinfo.py`
|
||
|
|
||
|
# Must have a V prefix to trigger github
|
||
|
git tag "v${VERSION}"
|
||
|
git push root "v${VERSION}" # push the tag
|
||
|
|
||
|
echo "Tag ${VERSION} pushed to github, github actions should now be building the draft release. If it seems good, click to publish it"
|