From c8d9717f5b8429bb995f79e9a4d8bd39056ee72d Mon Sep 17 00:00:00 2001 From: Volochay Date: Wed, 22 Jul 2026 14:00:57 +0000 Subject: [PATCH] =?UTF-8?q?=D0=9E=D0=B1=D0=BD=D0=BE=D0=B2=D0=B8=D1=82?= =?UTF-8?q?=D1=8C=20.github/workflows/docker-publish.yml?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/docker-publish.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docker-publish.yml b/.github/workflows/docker-publish.yml index 17dfb81..9c99add 100644 --- a/.github/workflows/docker-publish.yml +++ b/.github/workflows/docker-publish.yml @@ -19,17 +19,17 @@ jobs: - name: Checkout repository uses: actions/checkout@v4 - - name: Log in to GitHub Container Registry + - name: Log in to Gitea Container Registry uses: docker/login-action@v3 with: - registry: ghcr.io + registry: gitea.viaproger.ru username: ${{ github.actor }} - password: ${{ secrets.GITHUB_TOKEN }} + password: ${{ secrets.registry_password }} - name: Build Docker image run: | - docker build -t ghcr.io/igorvolochay/my-image:latest . + docker build -t gitea.viaproger.ru/${{ github.actor }}/my-image:latest . - name: Push Docker image run: | - docker push ghcr.io/igorvolochay/my-image:latest + docker push gitea.viaproger.ru/${{ github.actor }}/my-image:latest