Skip to content

Commit e506476

Browse files
build(ghcr_deploy.yml): add rc to all docker images
1 parent a515797 commit e506476

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/ghcr_deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,7 @@ jobs:
158158
tags: |
159159
${{ steps.meta-ee.outputs.tags }}-${{ github.event.inputs.tag || 'latest' }},
160160
${{ steps.meta-ee.outputs.tags }}-${{ github.event.inputs.release_type }}
161-
${{ github.event.inputs.release_type == 'stable' && format('{0}/berriai/litellm-ee:main-{1}', env.REGISTRY, github.event.inputs.tag) || '' }},
161+
${{ (github.event.inputs.release_type == 'stable' || github.event.inputs.release_type == 'rc') && format('{0}/berriai/litellm-ee:main-{1}', env.REGISTRY, github.event.inputs.tag) || '' }},
162162
${{ github.event.inputs.release_type == 'stable' && format('{0}/berriai/litellm-ee:main-stable', env.REGISTRY) || '' }}
163163
labels: ${{ steps.meta-ee.outputs.labels }}
164164
platforms: local,linux/amd64,linux/arm64,linux/arm64/v8
@@ -201,7 +201,7 @@ jobs:
201201
tags: |
202202
${{ steps.meta-database.outputs.tags }}-${{ github.event.inputs.tag || 'latest' }},
203203
${{ steps.meta-database.outputs.tags }}-${{ github.event.inputs.release_type }}
204-
${{ github.event.inputs.release_type == 'stable' && format('{0}/berriai/litellm-database:main-{1}', env.REGISTRY, github.event.inputs.tag) || '' }},
204+
${{ (github.event.inputs.release_type == 'stable' || github.event.inputs.release_type == 'rc') && format('{0}/berriai/litellm-database:main-{1}', env.REGISTRY, github.event.inputs.tag) || '' }},
205205
${{ github.event.inputs.release_type == 'stable' && format('{0}/berriai/litellm-database:main-stable', env.REGISTRY) || '' }}
206206
labels: ${{ steps.meta-database.outputs.labels }}
207207
platforms: local,linux/amd64,linux/arm64,linux/arm64/v8
@@ -244,7 +244,7 @@ jobs:
244244
tags: |
245245
${{ steps.meta-non_root.outputs.tags }}-${{ github.event.inputs.tag || 'latest' }},
246246
${{ steps.meta-non_root.outputs.tags }}-${{ github.event.inputs.release_type }}
247-
${{ github.event.inputs.release_type == 'stable' && format('{0}/berriai/litellm-non_root:main-{1}', env.REGISTRY, github.event.inputs.tag) || '' }},
247+
${{ (github.event.inputs.release_type == 'stable' || github.event.inputs.release_type == 'rc') && format('{0}/berriai/litellm-non_root:main-{1}', env.REGISTRY, github.event.inputs.tag) || '' }},
248248
${{ github.event.inputs.release_type == 'stable' && format('{0}/berriai/litellm-non_root:main-stable', env.REGISTRY) || '' }}
249249
labels: ${{ steps.meta-non_root.outputs.labels }}
250250
platforms: local,linux/amd64,linux/arm64,linux/arm64/v8
@@ -287,7 +287,7 @@ jobs:
287287
tags: |
288288
${{ steps.meta-spend-logs.outputs.tags }}-${{ github.event.inputs.tag || 'latest' }},
289289
${{ steps.meta-spend-logs.outputs.tags }}-${{ github.event.inputs.release_type }}
290-
${{ github.event.inputs.release_type == 'stable' && format('{0}/berriai/litellm-spend_logs:main-{1}', env.REGISTRY, github.event.inputs.tag) || '' }},
290+
${{ (github.event.inputs.release_type == 'stable' || github.event.inputs.release_type == 'rc') && format('{0}/berriai/litellm-spend_logs:main-{1}', env.REGISTRY, github.event.inputs.tag) || '' }},
291291
${{ github.event.inputs.release_type == 'stable' && format('{0}/berriai/litellm-spend_logs:main-stable', env.REGISTRY) || '' }}
292292
platforms: local,linux/amd64,linux/arm64,linux/arm64/v8
293293

0 commit comments

Comments
 (0)