kopia lustrzana https://github.com/meshtastic/firmware
18 wiersze
543 B
Bash
Executable File
18 wiersze
543 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
set -e
|
|
|
|
echo "This script is only for developers who are publishing new builds on github. Most users don't need it"
|
|
|
|
VERSION=`bin/buildinfo.py long`
|
|
|
|
# Must have a V prefix to trigger github
|
|
git tag "v${VERSION}"
|
|
|
|
# Commented out per https://github.com/meshtastic/Meshtastic-device/issues/947
|
|
#git push root "v${VERSION}" # push the tag
|
|
|
|
git push origin "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"
|