1
0
silverbullet/scripts/release.sh

8 lines
153 B
Bash
Raw Normal View History

2023-01-05 14:31:10 +00:00
#!/bin/bash -e
VERSION=$1
2023-07-07 11:09:44 +00:00
echo "export const version = \"$VERSION\";" > version.ts
2023-01-05 14:31:10 +00:00
git commit -am $VERSION
git tag $VERSION
git push && git push --tags