From abb2ba74e99e88f22784b3fd73d03e0b2a46dfb4 Mon Sep 17 00:00:00 2001 From: Antonio Milesi Bastos Date: Tue, 21 May 2024 10:51:47 -0300 Subject: [PATCH] chore: update docker repository to EvolutionAPI/evolution-api MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Parece que o `atendai/evolution-api` não existe ou é privado. Essa alteração vai atrelar a imagem a ele repositório. --- .github/workflows/publish_docker_image.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/publish_docker_image.yml b/.github/workflows/publish_docker_image.yml index 7c9901bc..60065760 100644 --- a/.github/workflows/publish_docker_image.yml +++ b/.github/workflows/publish_docker_image.yml @@ -29,12 +29,12 @@ jobs: - name: set docker tag run: | - echo "DOCKER_TAG=ghcr.io/atendai/evolution-api:$GIT_REF" >> $GITHUB_ENV + echo "DOCKER_TAG=ghcr.io/EvolutionAPI/evolution-api:$GIT_REF" >> $GITHUB_ENV - name: replace docker tag if main if: github.ref_name == 'main' run: | - echo "DOCKER_TAG=ghcr.io/atendai/evolution-api:latest" >> $GITHUB_ENV + echo "DOCKER_TAG=ghcr.io/EvolutionAPI/evolution-api:latest" >> $GITHUB_ENV - name: Login to GitHub Container Registry uses: docker/login-action@v3