mirror of
https://github.com/ClementTsang/bottom.git
synced 2026-05-03 21:40:32 +00:00
9 lines
314 B
Bash
9 lines
314 B
Bash
#!/bin/bash
|
|
|
|
cd docs
|
|
OLD_STABLE_VERSION=$(mike list stable | grep -Po '([0-9]+.[0-9]+.[0-9]+)' | head -n1)
|
|
echo ${OLD_STABLE_VERSION}
|
|
mike retitle --push stable ${OLD_STABLE_VERSION}
|
|
mike deploy --push --update-aliases ${RELEASE_VERSION} stable
|
|
mike retitle --push ${RELEASE_VERSION} "${RELEASE_VERSION} (stable)"
|