From e399df34ccec43e46cdcac5fc4e41726a3d6996a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20S=C3=BC=C3=9F?= Date: Thu, 2 May 2024 13:08:25 +0200 Subject: [PATCH] fix: correct the repository name in deployment flow (#6) --- .github/workflows/deploy.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/deploy.yaml b/.github/workflows/deploy.yaml index 50679aa..05abfcd 100644 --- a/.github/workflows/deploy.yaml +++ b/.github/workflows/deploy.yaml @@ -49,10 +49,10 @@ jobs: - name: Build and push working-directory: backend/alloy/convert-web run: | - export KO_DOCKER_REPO=ghcr.io/grafana/agent-configurator-backend + export KO_DOCKER_REPO=ghcr.io/grafana/alloy-configurator-backend ko build --sbom=none --bare --platform linux/arm64,linux/arm/v7,linux/amd64 -t ${{ github.ref_name }} \ - --image-label org.opencontainers.image.title=agent-configurator-backend \ - --image-label org.opencontainers.image.description="Backend for the agent-configurator" \ + --image-label org.opencontainers.image.title=alloy-configurator-backend \ + --image-label org.opencontainers.image.description="Backend for the alloy-configurator" \ --image-label org.opencontainers.image.url=${{ github.server_url }}/${{ github.repository }} \ --image-label org.opencontainers.image.revision=${{ github.sha }} \ --image-label org.opencontainers.image.version=${{ github.ref_name }} \