chore: Update Docker registry environment variables in CI workflow
Some checks failed
Integration Tests / integration-tests (push) Failing after 26s
Integration Tests / performance-tests (push) Has been skipped
Docker Build and Push / build-and-push (push) Failing after 10m36s

### Summary of Changes
- Introduced a new environment variable `REGISTRY_URL` for the Docker registry in the CI workflow for `docker-build.yml`.
- Updated the registry reference to use `REGISTRY_URL` instead of `REGISTRY` for improved clarity and consistency.

### Expected Results
- Enhanced readability and maintainability of the CI workflow by clearly separating the registry URL and its usage.
This commit is contained in:
GSRN
2025-09-17 01:10:00 +02:00
parent 59cd292963
commit 84d1660000

View File

@@ -8,7 +8,8 @@ on:
branches: [ main, develop ] branches: [ main, develop ]
env: env:
REGISTRY: https://gittea.kammenstraatha.duckdns.org REGISTRY: gittea.kammenstraatha.duckdns.org
REGISTRY_URL: https://gittea.kammenstraatha.duckdns.org
IMAGE_PREFIX: labfusion IMAGE_PREFIX: labfusion
jobs: jobs:
@@ -25,7 +26,7 @@ jobs:
- name: Login to Container Registry - name: Login to Container Registry
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
registry: ${{ env.REGISTRY }} registry: ${{ env.REGISTRY_URL }}
username: ${{ secrets.REGISTRY_USERNAME }} username: ${{ secrets.REGISTRY_USERNAME }}
password: ${{ secrets.REGISTRY_PASSWORD }} password: ${{ secrets.REGISTRY_PASSWORD }}