Skip to content

Commit

Permalink
fix(ci): correct TGI_VERSION definition in workflow (#122)
Browse files Browse the repository at this point in the history
There were extra quote characters causing errors.
  • Loading branch information
tengomucho authored Nov 29, 2024
1 parent 578b538 commit 29d2117
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/tpu-tgi-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Release
on:
release:
types: [published]
# This can be used to allow manually triggering this workflow from the web interface
workflow_dispatch:

jobs:
docker:
Expand Down Expand Up @@ -74,7 +76,7 @@ jobs:
labels: ${{ steps.meta.outputs.labels }}
build-args: |
VERSION=${{ steps.version.outputs.version }}
TGI_VERSION="v2.4.1"
TGI_VERSION=v2.4.1
- name: Generate artifact attestation for TGI
Expand All @@ -95,7 +97,7 @@ jobs:
labels: ${{ steps.meta-ie.outputs.labels }}
build-args: |
VERSION=${{ steps.version.outputs.version }}
TGI_VERSION="v2.4.1"
TGI_VERSION=v2.4.1
target: inference-endpoint


Expand Down

0 comments on commit 29d2117

Please sign in to comment.