Skip to content

Commit f3b5f3f

Browse files
committed
update default build values to use versioned builds, fix versioned build directory path issue
Signed-off-by: dalthecow <[email protected]>
1 parent 5a95728 commit f3b5f3f

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/release-candidate.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ jobs:
228228
uses: peaceiris/actions-gh-pages@v3
229229
with:
230230
github_token: ${{ secrets.GITHUB_TOKEN }}
231-
publish_dir: ./ui/out
231+
publish_dir: .src/ui/out
232232
destination_dir: ui/release/${TAG}
233233
keep_files: false
234234
user_name: ${{ github.actor }}

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ jobs:
227227
uses: peaceiris/actions-gh-pages@v3
228228
with:
229229
github_token: ${{ secrets.GITHUB_TOKEN }}
230-
publish_dir: ./ui/out
230+
publish_dir: ./src/ui/out
231231
destination_dir: ui/${TAG}
232232
keep_files: false
233233
user_name: ${{ github.actor }}

src/guidellm/config.py

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

3232

3333
ENV_REPORT_MAPPING = {
34-
Environment.PROD: "https://blog.vllm.ai/guidellm/ui/latest/index.html",
35-
Environment.STAGING: "https://blog.vllm.ai/guidellm/ui/release/latest/index.html",
34+
Environment.PROD: "https://blog.vllm.ai/guidellm/ui/v0.3.0/index.html",
35+
Environment.STAGING: "https://blog.vllm.ai/guidellm/ui/release/v0.3.0/index.html",
3636
Environment.DEV: "https://blog.vllm.ai/guidellm/ui/dev/index.html",
3737
Environment.LOCAL: "http://localhost:3000/index.html",
3838
}

0 commit comments

Comments
 (0)