From 9580183bcf25130f6d5728ed7682d3a6d59989d7 Mon Sep 17 00:00:00 2001 From: Janis Hutz Date: Mon, 22 Dec 2025 17:55:44 +0100 Subject: [PATCH] [CI] Fix incorrect syntax --- .gitea/workflows/create-and-publish.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitea/workflows/create-and-publish.yml b/.gitea/workflows/create-and-publish.yml index 609cb2c..e8c1ede 100644 --- a/.gitea/workflows/create-and-publish.yml +++ b/.gitea/workflows/create-and-publish.yml @@ -11,5 +11,5 @@ jobs: ref: main - name: Build and upload image run: | - docker login -u ${{ variables.REGISTRY_USER_USERNAME }} -p ${{ secrets.REGISTRY_USER_PASSWORD }} - ./build-image.sh ${{ variables.REGISTRY_URL }} + docker login -u ${{ vars.REGISTRY_USER_USERNAME }} -p ${{ secrets.REGISTRY_USER_PASSWORD }} + ./build-image.sh ${{ vars.REGISTRY_URL }}