From c2da7ee06b6749327a76c7d0f06e8af000bfff77 Mon Sep 17 00:00:00 2001 From: Hayden Hargreaves Date: Sat, 22 Feb 2025 23:53:13 -0700 Subject: [PATCH] FIX: I put the secrets in the wrong place --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index c6d53ea..da68ce8 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -16,7 +16,7 @@ jobs: - name: Debug secrets (temporary) run: | echo "Username (first 5 chars): ${{ secrets.DOCKER_USERNAME }}" - echo "Password (first 5 chars): ${{ secrets.DOCKER_TOKEN }}" # Or DOCKER_PASSWORD + echo "Password (first 5 chars): ${{ secrets.DOCKER_TOKEN }}" - name: Login to Docker Hub uses: docker/login-action@v3