Skip to content

Commit fc640aa

Browse files
committed
fix gh wf variable usage
Signed-off-by: dalthecow <[email protected]>
1 parent 07aa58f commit fc640aa

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/release-candidate.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -226,8 +226,8 @@ jobs:
226226
export $(grep -v '^#' .env.staging | xargs)
227227
228228
# Set asset prefix and base path with git tag
229-
ASSET_PREFIX=https://blog.vllm.ai/guidellm/ui/release/${{TAG}}
230-
BASE_PATH=/ui/release/${{TAG}}
229+
ASSET_PREFIX=https://blog.vllm.ai/guidellm/ui/release/${{ env.TAG }}
230+
BASE_PATH=/ui/release/${{ env.TAG }}
231231
GIT_SHA=${{ github.sha }}
232232
export ASSET_PREFIX=${ASSET_PREFIX}
233233
export BASE_PATH=${BASE_PATH}
@@ -239,7 +239,7 @@ jobs:
239239
with:
240240
github_token: ${{ secrets.GITHUB_TOKEN }}
241241
publish_dir: .src/ui/out
242-
destination_dir: ui/release/${{ github.ref_name }}
242+
destination_dir: ui/release/${{ env.TAG }}
243243
keep_files: false
244244
user_name: ${{ github.actor }}
245245
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/${{ env.TAG }}
225+
BASE_PATH=/ui/${{ env.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/${{ github.ref_name }}
237+
destination_dir: ui/${{ env.TAG }}
238238
keep_files: false
239239
user_name: ${{ github.actor }}
240240
user_email: ${{ github.actor }}@users.noreply.github.com

0 commit comments

Comments
 (0)