Skip to content
Merged
6 changes: 3 additions & 3 deletions .github/workflows/release-candidate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -226,8 +226,8 @@ jobs:
export $(grep -v '^#' .env.staging | xargs)

# Set asset prefix and base path with git tag
ASSET_PREFIX=https://blog.vllm.ai/guidellm/ui/release/${TAG}
BASE_PATH=/ui/release/${TAG}
ASSET_PREFIX=https://blog.vllm.ai/guidellm/ui/${{ env.TAG }}
BASE_PATH=/ui/${{ env.TAG }}
GIT_SHA=${{ github.sha }}
export ASSET_PREFIX=${ASSET_PREFIX}
export BASE_PATH=${BASE_PATH}
Expand All @@ -239,7 +239,7 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: .src/ui/out
destination_dir: ui/release/${TAG}
destination_dir: ui/${{ env.TAG }}
keep_files: false
user_name: ${{ github.actor }}
user_email: ${{ github.actor }}@users.noreply.github.com
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -221,8 +221,8 @@ jobs:
export $(grep -v '^#' .env.production | xargs)

# Set asset prefix and base path with git tag
ASSET_PREFIX=https://blog.vllm.ai/guidellm/ui/${TAG}
BASE_PATH=/ui/${TAG}
ASSET_PREFIX=https://blog.vllm.ai/guidellm/ui/${{ env.TAG }}
BASE_PATH=/ui/${{ env.TAG }}
GIT_SHA=${{ github.sha }}
export ASSET_PREFIX=${ASSET_PREFIX}
export BASE_PATH=${BASE_PATH}
Expand All @@ -234,7 +234,7 @@ jobs:
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./src/ui/out
destination_dir: ui/${TAG}
destination_dir: ui/${{ env.TAG }}
keep_files: false
user_name: ${{ github.actor }}
user_email: ${{ github.actor }}@users.noreply.github.com
Expand Down
4 changes: 2 additions & 2 deletions src/guidellm/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ class Environment(str, Enum):


ENV_REPORT_MAPPING = {
Environment.PROD: "https://blog.vllm.ai/guidellm/ui/v0.3.1/index.html",
Environment.STAGING: "https://blog.vllm.ai/guidellm/ui/release/v0.3.1/index.html",
Environment.PROD: "https://blog.vllm.ai/guidellm/ui/v0.4.0/index.html",
Environment.STAGING: "https://blog.vllm.ai/guidellm/ui/release/v0.4.0/index.html",
Environment.DEV: "https://blog.vllm.ai/guidellm/ui/dev/index.html",
Environment.LOCAL: "http://localhost:3000/index.html",
}
Expand Down
Loading