Fix environment variable reference for Docker Hub login in GitHub Actions workflow
Some checks failed
Build Docker Image / build (push) Failing after 26s

This commit is contained in:
2025-12-16 09:36:59 +01:00
parent 89bc15a4a9
commit 663b830dc4

View File

@@ -18,7 +18,7 @@ jobs:
- name: Log in to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ variables.DOCKER_HUB_USERNAME }}
username: ${{ env.DOCKER_HUB_USERNAME }}
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Push Docker image to Docker Hub