From 68418ec5f2c8f8b85eceedc65a3aedf478f04909 Mon Sep 17 00:00:00 2001 From: ishaan-jaff Date: Tue, 9 Jan 2024 15:56:58 +0530 Subject: [PATCH] (fix) ghcr_deploy.yaml --- .github/workflows/ghcr_deploy.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ghcr_deploy.yml b/.github/workflows/ghcr_deploy.yml index 8ec4ae338e..8330bfee93 100644 --- a/.github/workflows/ghcr_deploy.yml +++ b/.github/workflows/ghcr_deploy.yml @@ -44,7 +44,7 @@ jobs: with: context: . push: true - tags: ${{ steps.meta.outputs.tags }}-${{ github.event.inputs.tag || 'latest' }}, 'latest' # if a tag is provided, use that, otherwise use the release tag, and if neither is available, use 'latest' + tags: ${{ steps.meta.outputs.tags }}-${{ github.event.inputs.tag || 'latest' }}, latest # if a tag is provided, use that, otherwise use the release tag, and if neither is available, use 'latest' labels: ${{ steps.meta.outputs.labels }} build-and-push-image-alpine: runs-on: ubuntu-latest @@ -74,7 +74,7 @@ jobs: context: . dockerfile: Dockerfile.alpine push: true - tags: ${{ steps.meta-alpine.outputs.tags }}-${{ github.event.inputs.tag || 'latest' }}, 'latest' + tags: ${{ steps.meta-alpine.outputs.tags }}-${{ github.event.inputs.tag || 'latest' }}, latest labels: ${{ steps.meta-alpine.outputs.labels }} build-and-push-image-database: runs-on: ubuntu-latest @@ -104,7 +104,7 @@ jobs: context: . file: Dockerfile.database push: true - tags: ${{ steps.meta-database.outputs.tags }}-${{ github.event.inputs.tag || 'latest' }}, 'latest' + tags: ${{ steps.meta-database.outputs.tags }}-${{ github.event.inputs.tag || 'latest' }}, latest labels: ${{ steps.meta-database.outputs.labels }} release: name: "New LiteLLM Release"