Skip to content

Commit 0df3460

Browse files
authored
Merge a937e1b into 1741526
2 parents 1741526 + a937e1b commit 0df3460

File tree

4 files changed

+7
-7
lines changed

4 files changed

+7
-7
lines changed

.github/workflows/development.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -252,7 +252,7 @@ jobs:
252252
with:
253253
github_token: ${{ secrets.GITHUB_TOKEN }}
254254
publish_dir: ./src/ui/out
255-
destination_dir: ui/pr/${{ steps.build.outputs.pr_number }}
255+
destination_dir: ui/pr/${{ github.ref_name }}
256256
keep_files: false
257257
user_name: ${{ github.actor }}
258258
user_email: ${{ github.actor }}@users.noreply.github.com

.github/workflows/release.yml

Lines changed: 3 additions & 3 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/${{TAG}}
225+
BASE_PATH=/ui/${{TAG}}
226226
GIT_SHA=${{ github.sha }}
227227
export ASSET_PREFIX=${ASSET_PREFIX}
228228
export BASE_PATH=${BASE_PATH}
@@ -234,7 +234,7 @@ jobs:
234234
with:
235235
github_token: ${{ secrets.GITHUB_TOKEN }}
236236
publish_dir: ./src/ui/out
237-
destination_dir: ui/${TAG}
237+
destination_dir: ui/${{ github.ref_name }}
238238
keep_files: false
239239
user_name: ${{ github.actor }}
240240
user_email: ${{ github.actor }}@users.noreply.github.com

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)