🐛 Fix github actions docker build use wrong env var
Some checks failed
Build and Push Dyson Sphere / build (push) Has been cancelled

This commit is contained in:
LittleSheep 2025-05-18 22:45:37 +08:00
parent 2fca5310be
commit 353edc58a7

View File

@ -20,8 +20,8 @@ jobs:
- name: Log in to DockerHub - name: Log in to DockerHub
uses: docker/login-action@v3 uses: docker/login-action@v3
with: with:
username: ${{ secrets.DOCKER_USERNAME }} username: ${{ secrets.DOCKER_REGISTRY_TOKEN }}
password: ${{ secrets.DOCKER_PASSWORD }} password: ${{ secrets.DOCKER_REGISTRY_USERNAME }}
- name: Build and push Docker image - name: Build and push Docker image
uses: docker/build-push-action@v5 uses: docker/build-push-action@v5