m3_lightmeter/.github/scripts/increment_build_number.sh

8 lines
197 B
Bash
Raw Normal View History

2023-09-02 10:18:01 +00:00
export newVersion="$1"
if [[ -n "$newVersion" ]]; then
perl -i -pe 's/^(version:\s+)(\d+\.\d+\.\d+)(\+)(\d+)$/$1.$ENV{'newVersion'}.$3.($4+1)/e' pubspec.yaml
else
echo "argument error"
fi