1
0
silverbullet/scripts/release.sh
2023-01-05 15:31:10 +01:00

8 lines
136 B
Bash
Executable File

#!/bin/bash -e
VERSION=$1
cd desktop; npm version $VERSION; cd ..
git commit -am $VERSION
git tag $VERSION
git push && git push --tags