Skip to content

Commit 09d83bb

Browse files
committed
chore(stacks): add renew
1 parent 285ffa2 commit 09d83bb

1 file changed

Lines changed: 7 additions & 0 deletions

File tree

build.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,13 @@ function upload {
4747
python3 /scripts/upload.py "${STACK_NAME}" "${DIST_DIR}"
4848
}
4949

50+
function renew() {
51+
git tag -d "$1"
52+
git push origin :refs/tags/"$1"
53+
git tag "$1"
54+
git push --tag
55+
}
56+
5057
function all() {
5158
STACK_NAME=$(echo "${1}" | cut -d '@' -f 1)
5259
STACK_VERSION=$(echo "${1}" | cut -d '@' -f 2)

0 commit comments

Comments
 (0)