lemmy-js-client/deploy.sh

9 lines
114 B
Bash
Raw Normal View History

2021-01-20 15:23:37 +00:00
#!/bin/bash
new_tag="$1"
2021-01-20 15:35:12 +00:00
yarn version --new-version $new_tag
git push
2021-01-20 15:23:37 +00:00
git tag $new_tag
git push origin $new_tag