From eda96e4ffd70de2f944ce0589a8eddae4ed294e9 Mon Sep 17 00:00:00 2001 From: Jovonni Date: Tue, 17 Mar 2026 00:33:59 -0400 Subject: [PATCH] Fix Docker Hub secret names in workspace CI workflow MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit DOCKERHUB_USERNAME/DOCKERHUB_TOKEN → DOCKER_USERNAME/DOCKER_PASSWORD to match the secrets configured in the repo. --- .github/workflows/ci-workspace.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci-workspace.yml b/.github/workflows/ci-workspace.yml index 2b43ecd..9503a8a 100644 --- a/.github/workflows/ci-workspace.yml +++ b/.github/workflows/ci-workspace.yml @@ -54,8 +54,8 @@ jobs: - name: Login to Docker Hub uses: docker/login-action@v3 with: - username: ${{ secrets.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} - name: Build and push uses: docker/build-push-action@v5