Skip to content

Commit 0c555e8

Browse files
authored
Merge a3e261d into 1741526
2 parents 1741526 + a3e261d commit 0c555e8

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/development.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -236,9 +236,9 @@ jobs:
236236
echo "pr_number=${PR_NUMBER}" >> $GITHUB_OUTPUT
237237
238238
# Set asset prefix and base path with PR number
239-
ASSET_PREFIX=https://blog.vllm.ai/guidellm/ui/pr/${PR_NUMBER}
239+
ASSET_PREFIX=https://blog.vllm.ai/guidellm/ui/pr/${{ github.ref_name }}
240240
USE_MOCK_DATA=true
241-
BASE_PATH=/ui/pr/${PR_NUMBER}
241+
BASE_PATH=/ui/pr/${{ github.ref_name }}
242242
GIT_SHA=${{ github.sha }}
243243
export ASSET_PREFIX=${ASSET_PREFIX}
244244
export BASE_PATH=${BASE_PATH}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,8 +221,8 @@ jobs:
221221
export $(grep -v '^#' .env.production | xargs)
222222
223223
# Set asset prefix and base path with git tag
224-
ASSET_PREFIX=https://blog.vllm.ai/guidellm/ui/${TAG}
225-
BASE_PATH=/ui/${TAG}
224+
ASSET_PREFIX=https://blog.vllm.ai/guidellm/ui/${{ github.ref_name }}
225+
BASE_PATH=/ui/${{ github.ref_name }}
226226
GIT_SHA=${{ github.sha }}
227227
export ASSET_PREFIX=${ASSET_PREFIX}
228228
export BASE_PATH=${BASE_PATH}

src/guidellm/settings.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ class Environment(str, Enum):
3232

3333

3434
ENV_REPORT_MAPPING = {
35-
Environment.PROD: "https://blog.vllm.ai/guidellm/ui/v0.3.1/index.html",
36-
Environment.STAGING: "https://blog.vllm.ai/guidellm/ui/release/v0.3.1/index.html",
35+
Environment.PROD: "https://blog.vllm.ai/guidellm/ui/v0.4.0/index.html",
36+
Environment.STAGING: "https://blog.vllm.ai/guidellm/ui/release/v0.4.0/index.html",
3737
Environment.DEV: "https://blog.vllm.ai/guidellm/ui/dev/index.html",
3838
Environment.LOCAL: "http://localhost:3000/index.html",
3939
}

src/ui/lib/store/runInfoWindowData.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ export const runInfoScript = `window.runInfo = {
77
"dataset": {
88
"name": "N/A"
99
},
10-
"timestamp": 1744310555.0286171
10+
"timestamp": 1744311555.0286171
1111
};`;

0 commit comments

Comments
 (0)