mirror of
https://github.com/ClementTsang/bottom.git
synced 2026-05-04 05:50:42 +00:00
8629468e45
* move cirrus release script * update a few other places
9 lines
314 B
Bash
Executable File
9 lines
314 B
Bash
Executable File
#!/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)"
|