Skip to content

Commit 15258ab

Browse files
committed
update gh pages url
Signed-off-by: dalthecow <[email protected]>
1 parent e314599 commit 15258ab

File tree

10 files changed

+18
-18
lines changed

10 files changed

+18
-18
lines changed

.github/workflows/development.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,7 @@ jobs:
281281
echo "pr_number=${PR_NUMBER}" >> $GITHUB_OUTPUT
282282
283283
# Set asset prefix and base path with PR number
284-
ASSET_PREFIX=https://neuralmagic.github.io/guidellm/ui/pr/${PR_NUMBER}
284+
ASSET_PREFIX=https://blog.vllm.ai/guidellm/ui/pr/${PR_NUMBER}
285285
USE_MOCK_DATA=true
286286
BASE_PATH=/ui/pr/${PR_NUMBER}
287287
GIT_SHA=${{ github.sha }}
@@ -308,7 +308,7 @@ jobs:
308308
if: steps.check-changes.outputs.should_build == 'true'
309309
id: deploy
310310
run: |
311-
DEPLOY_URL=https://neuralmagic.github.io/guidellm/ui/pr/${{ steps.build.outputs.pr_number }}
311+
DEPLOY_URL=https://blog.vllm.ai/guidellm/ui/pr/${{ steps.build.outputs.pr_number }}
312312
echo "url=${DEPLOY_URL}" >> $GITHUB_OUTPUT
313313
314314
- name: Find PR comment

.github/workflows/main.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ jobs:
205205
export $(grep -v '^#' .env.development | xargs)
206206
207207
# Set asset prefix and base path with PR number
208-
ASSET_PREFIX=https://neuralmagic.github.io/guidellm/ui/dev
208+
ASSET_PREFIX=https://blog.vllm.ai/guidellm/ui/dev
209209
BASE_PATH=/ui/dev
210210
GIT_SHA=${{ github.sha }}
211211
export ASSET_PREFIX=${ASSET_PREFIX}

.github/workflows/nightly.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,7 @@ jobs:
226226
export $(grep -v '^#' .env.staging | xargs)
227227
228228
# Set asset prefix and base path with git tag
229-
ASSET_PREFIX=https://neuralmagic.github.io/guidellm/ui/nightly
229+
ASSET_PREFIX=https://blog.vllm.ai/guidellm/ui/nightly
230230
BASE_PATH=/ui/nightly
231231
GIT_SHA=${{ github.sha }}
232232
export ASSET_PREFIX=${ASSET_PREFIX}

.github/workflows/release-candidate.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -216,7 +216,7 @@ jobs:
216216
export $(grep -v '^#' .env.staging | xargs)
217217
218218
# Set asset prefix and base path with git tag
219-
ASSET_PREFIX=https://neuralmagic.github.io/guidellm/ui/release/${TAG}
219+
ASSET_PREFIX=https://blog.vllm.ai/guidellm/ui/release/${TAG}
220220
BASE_PATH=/ui/release/${TAG}
221221
GIT_SHA=${{ github.sha }}
222222
export ASSET_PREFIX=${ASSET_PREFIX}
@@ -270,7 +270,7 @@ jobs:
270270
export $(grep -v '^#' .env.staging | xargs)
271271
272272
# Set asset prefix and base path with git tag
273-
ASSET_PREFIX=https://neuralmagic.github.io/guidellm/ui/release/latest
273+
ASSET_PREFIX=https://blog.vllm.ai/guidellm/ui/release/latest
274274
BASE_PATH=/ui/release/latest
275275
GIT_SHA=${{ github.sha }}
276276
export ASSET_PREFIX=${ASSET_PREFIX}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -215,7 +215,7 @@ jobs:
215215
export $(grep -v '^#' .env.production | xargs)
216216
217217
# Set asset prefix and base path with git tag
218-
ASSET_PREFIX=https://neuralmagic.github.io/guidellm/ui/${TAG}
218+
ASSET_PREFIX=https://blog.vllm.ai/guidellm/ui/${TAG}
219219
BASE_PATH=/ui/${TAG}
220220
GIT_SHA=${{ github.sha }}
221221
export ASSET_PREFIX=${ASSET_PREFIX}
@@ -269,7 +269,7 @@ jobs:
269269
export $(grep -v '^#' .env.production | xargs)
270270
271271
# Set asset prefix and base path with git tag
272-
ASSET_PREFIX=https://neuralmagic.github.io/guidellm/ui/latest
272+
ASSET_PREFIX=https://blog.vllm.ai/guidellm/ui/latest
273273
BASE_PATH=/ui/latest
274274
GIT_SHA=${{ github.sha }}
275275
export ASSET_PREFIX=${ASSET_PREFIX}

src/guidellm/config.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@ class Environment(str, Enum):
3030

3131

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

src/ui/.env.development

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
ASSET_PREFIX=https://neuralmagic.github.io/guidellm/ui/dev
1+
ASSET_PREFIX=https://blog.vllm.ai/guidellm/ui/dev
22
BASE_PATH=/ui/dev
33
NEXT_PUBLIC_USE_MOCK_API=true

src/ui/.env.production

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
ASSET_PREFIX=https://neuralmagic.github.io/guidellm/ui/latest
1+
ASSET_PREFIX=https://blog.vllm.ai/guidellm/ui/latest
22
BASE_PATH=/ui/latest
33
NEXT_PUBLIC_USE_MOCK_API=true

src/ui/.env.staging

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
ASSET_PREFIX=https://neuralmagic.github.io/guidellm/ui/release/latest
1+
ASSET_PREFIX=https://blog.vllm.ai/guidellm/ui/release/latest
22
BASE_PATH=/ui/release/latest
33
NEXT_PUBLIC_USE_MOCK_API=true

tests/unit/test_config.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def test_default_settings():
2121
assert settings.openai == OpenAISettings()
2222
assert (
2323
settings.report_generation.source
24-
== "https://neuralmagic.github.io/guidellm/ui/latest/index.html"
24+
== "https://blog.vllm.ai/guidellm/ui/latest/index.html"
2525
)
2626

2727

@@ -54,19 +54,19 @@ def test_report_generation_default_source():
5454
settings = Settings(env=Environment.DEV)
5555
assert (
5656
settings.report_generation.source
57-
== "https://neuralmagic.github.io/guidellm/ui/dev/index.html"
57+
== "https://blog.vllm.ai/guidellm/ui/dev/index.html"
5858
)
5959

6060
settings = Settings(env=Environment.STAGING)
6161
assert (
6262
settings.report_generation.source
63-
== "https://neuralmagic.github.io/guidellm/ui/release/latest/index.html"
63+
== "https://blog.vllm.ai/guidellm/ui/release/latest/index.html"
6464
)
6565

6666
settings = Settings(env=Environment.PROD)
6767
assert (
6868
settings.report_generation.source
69-
== "https://neuralmagic.github.io/guidellm/ui/latest/index.html"
69+
== "https://blog.vllm.ai/guidellm/ui/latest/index.html"
7070
)
7171

7272

0 commit comments

Comments
 (0)