From ca1bc2b5738f37af24da964f9f594dcfac934d4a Mon Sep 17 00:00:00 2001 From: "IETM_FIXE\\ietm6" Date: Tue, 21 Apr 2026 08:16:18 +0200 Subject: [PATCH] ci: hardcode registry URL and user --- .gitea/workflows/release.yml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 592ae47..afde496 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -5,6 +5,10 @@ on: tags: - 'v*' +env: + REGISTRY: git.igmlcreation.fr + REGISTRY_USER: ietm64 + jobs: build: runs-on: ubuntu-latest @@ -22,8 +26,8 @@ jobs: - name: Login to Gitea Registry uses: docker/login-action@v3 with: - registry: ${{ vars.REGISTRY_URL }} - username: ${{ vars.REGISTRY_USER }} + registry: ${{ env.REGISTRY }} + username: ${{ env.REGISTRY_USER }} password: ${{ secrets.REGISTRY_TOKEN }} - name: Extract version @@ -36,5 +40,5 @@ jobs: context: ./${{ matrix.component }} push: true tags: | - ${{ vars.REGISTRY_URL }}/loremindmj/${{ matrix.component }}:latest - ${{ vars.REGISTRY_URL }}/loremindmj/${{ matrix.component }}:${{ steps.meta.outputs.version }} + ${{ env.REGISTRY }}/loremindmj/${{ matrix.component }}:latest + ${{ env.REGISTRY }}/loremindmj/${{ matrix.component }}:${{ steps.meta.outputs.version }}