Skip to content

Commit 393cc9f

Browse files
authored
Merge pull request #5237 from rak-phillip/task/releast/v2.12.0
Branch for release 2.12
2 parents 1322490 + f7b6eac commit 393cc9f

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -74,10 +74,10 @@ Rancher UI supports localization via translations files. You can swap translatio
7474
If you want to customize the UI, re-packaging all of Rancher to distribute the UI is possible but not terribly convenient. Instead you can change Cattle to load the UI source from a remote web server:
7575

7676
- Build with `./scripts/build-static -l -c 'your-server.com'`
77-
- Upload `./dist/static/latest2` so that it's available at https://your-server.com/latest2
77+
- Upload `./dist/static/release-2.12` so that it's available at https://your-server.com/release-2.12
7878
- It must be available over HTTPS.
79-
- You can rename the "latest2" part with the `-v` flag
80-
- Change the value of https://your-rancher/v3/settings/ui-index to the same `https://your-server.com/latest2` URL
79+
- You can rename the "release-2.12" part with the `-v` flag
80+
- Change the value of https://your-rancher/v3/settings/ui-index to the same `https://your-server.com/release-2.12` URL
8181

8282
### Running Tests
8383

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "ui",
3-
"version": "master-dev",
3+
"version": "2.12-dev",
44
"private": true,
55
"repository": "https://github.com/rancher/ui",
66
"license": "Apache-2.0",

scripts/build-static

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ if [[ "${FORCE_VERSION}" != "" ]]; then
9898
VERSION=${FORCE_VERSION}
9999
else
100100
if [[ $LATEST -eq 1 ]]; then
101-
VERSION="latest2"
101+
VERSION="release-2.12"
102102
elif [[ "${CI_BRANCH}" != "" ]]; then
103103
VERSION=${CI_BRANCH}
104104
else

0 commit comments

Comments
 (0)