From 5ace3588cc77b6ca1e16a8a23a3934a927b19bbc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Nikola=20Dere=C5=BEi=C4=87?= Date: Fri, 9 Jan 2026 13:14:36 +0100 Subject: [PATCH] (bugfix) registry username was not referencing correct variable --- .gitea/workflows/build.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index a1c2d60..81ab9d2 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -33,11 +33,11 @@ jobs: # - `vars.REGISTRY_USERNAME` - defined as action variable in repo settings # - `secrets.REGISTRY_TOKEN` - defined as action secret in repo settings # created in user settings as personal access token with `write:packages` scope - # - `vars.PROFILE_REGISTRY_TOKEN` - defined as action variable in profile settings + # - `vars.PROFILE_REGISTRY_USERNAME` - defined as action variable in profile settings # - `secrets.PROFILE_REGISTRY_TOKEN` - defined as action secret in profile settings # created in user settings as personal access token with `write:packages` scope run: | - echo "${{ secrets.PROFILE_REGISTRY_TOKEN }}" | docker login registry.budakova.org -u "${{ vars.PROFILE_REGISTRY_TOKEN }}" --password-stdin + echo "${{ secrets.PROFILE_REGISTRY_TOKEN }}" | docker login registry.budakova.org -u "${{ vars.PROFILE_REGISTRY_USERNAME }}" --password-stdin - name: Build and push Docker image uses: docker/build-push-action@v5