From 2b3fc15fa93650bcd56eaba8457ccdd8d1a3cec8 Mon Sep 17 00:00:00 2001 From: Ishaan Jaff Date: Wed, 10 Jan 2024 20:55:28 +0530 Subject: [PATCH] (ghcr) always add -latest tag on ghcr deploys --- .github/workflows/ghcr_deploy.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ghcr_deploy.yml b/.github/workflows/ghcr_deploy.yml index 1144b2b7f..890518606 100644 --- a/.github/workflows/ghcr_deploy.yml +++ b/.github/workflows/ghcr_deploy.yml @@ -102,7 +102,7 @@ jobs: context: . file: Dockerfile.alpine push: true - tags: ${{ steps.meta-alpine.outputs.tags }}-${{ github.event.inputs.tag || 'latest' }} + tags: ${{ steps.meta.outputs.tags }}-${{ github.event.inputs.tag || 'latest' }}, ${{ steps.meta.outputs.tags }}-latest labels: ${{ steps.meta-alpine.outputs.labels }} build-and-push-image-database: runs-on: ubuntu-latest @@ -132,7 +132,7 @@ jobs: context: . file: Dockerfile.database push: true - tags: ${{ steps.meta-database.outputs.tags }}-${{ github.event.inputs.tag || 'latest' }} + tags: ${{ steps.meta.outputs.tags }}-${{ github.event.inputs.tag || 'latest' }}, ${{ steps.meta.outputs.tags }}-latest labels: ${{ steps.meta-database.outputs.labels }} release: name: "New LiteLLM Release"