mirror of
https://github.com/LemmyNet/lemmy-js-client.git
synced 2024-11-22 20:31:12 +00:00
8 lines
114 B
Bash
8 lines
114 B
Bash
#!/bin/bash
|
|
|
|
new_tag="$1"
|
|
|
|
yarn version --new-version $new_tag
|
|
git push
|
|
git tag $new_tag
|
|
git push origin $new_tag
|