Skip to content

Commit

Permalink
Fix image name (kubeflow#2619)
Browse files Browse the repository at this point in the history
Signed-off-by: ddelange <14880945+ddelange@users.noreply.github.com>

Signed-off-by: ddelange <14880945+ddelange@users.noreply.github.com>
  • Loading branch information
ddelange authored Dec 23, 2022
1 parent 2fdf6ad commit 0933f7c
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/agent-docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:

env:
IMAGE_NAME: agent
DOCKER_USER: ${{ secrets.DOCKER_USER }}

jobs:
# Run tests.
# See also https://docs.docker.com/docker-hub/builds/automated-testing/
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:

- name: export version variable
run: |
IMAGE_ID=$DOCKER_USER/$IMAGE_NAME
IMAGE_ID=kserve/$IMAGE_NAME
# Change all uppercase to lowercase
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/kserve-controller-docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ on:

env:
IMAGE_NAME: kserve-controller
DOCKER_USER: ${{secrets.DOCKER_USER}}

jobs:
# Run tests.
# See also https://docs.docker.com/docker-hub/builds/automated-testing/
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:

- name: export version variable
run: |
IMAGE_ID=$DOCKER_USER/$IMAGE_NAME
IMAGE_ID=kserve/$IMAGE_NAME
# Change all uppercase to lowercase
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/qpext-docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ on:

env:
IMAGE_NAME: qpext
DOCKER_USER: ${{secrets.DOCKER_USER}}

jobs:
# Run tests.
Expand Down Expand Up @@ -62,7 +61,7 @@ jobs:

- name: export version variable
run: |
IMAGE_ID=$DOCKER_USER/$IMAGE_NAME
IMAGE_ID=kserve/$IMAGE_NAME
# Change all uppercase to lowercase
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/router-docker-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@ on:

env:
IMAGE_NAME: router
DOCKER_USER: ${{ secrets.DOCKER_USER }}

jobs:
# Run tests.
Expand Down Expand Up @@ -61,7 +60,7 @@ jobs:

- name: export version variable
run: |
IMAGE_ID=$DOCKER_USER/$IMAGE_NAME
IMAGE_ID=kserve/$IMAGE_NAME
# Change all uppercase to lowercase
IMAGE_ID=$(echo $IMAGE_ID | tr '[A-Z]' '[a-z]')
Expand Down

0 comments on commit 0933f7c

Please sign in to comment.