From fc9b0df06fa86189c0b946c9f006f0303c9e1674 Mon Sep 17 00:00:00 2001 From: petrCher <88943157+petrCher@users.noreply.github.com> Date: Sun, 26 Apr 2026 15:03:33 +0300 Subject: [PATCH] fix deploy --- .github/workflows/build_and_publish.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/build_and_publish.yml b/.github/workflows/build_and_publish.yml index 44557fa6..37b85801 100644 --- a/.github/workflows/build_and_publish.yml +++ b/.github/workflows/build_and_publish.yml @@ -63,6 +63,9 @@ jobs: packages: read steps: + - name: Log in to the Container registry + run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ${{ env.REGISTRY }} -u ${{ github.actor }} --password-stdin + - name: Pull new version run: docker pull ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:test @@ -110,6 +113,9 @@ jobs: packages: read steps: + - name: Log in to the Container registry + run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ${{ env.REGISTRY }} -u ${{ github.actor }} --password-stdin + - name: Pull new version run: docker pull ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:latest