blob: d3156e05bbd36ade66b327a3d81af2ddf11e55a5 [file] [log] [blame]
#!/bin/bash
CURRENT_VERSION="$(sed -n -e 's/^.*version: //p' packages/devtools_app/pubspec.yaml)"
echo "Tagging version: $CURRENT_VERSION"
set -x #echo on
git tag -a v$CURRENT_VERSION -m "DevTools $CURRENT_VERSION"
git push upstream v$CURRENT_VERSION