Skip to content

Commit 3fb6760

Browse files
dylanjeffersclaude
andcommitted
fix(ci): use DOCKER_USERNAME/DOCKER_PASSWORD for identity docker push
Match the secret names pedalboard's build-services workflow uses (these are org-level secrets on AudiusProject) instead of the CircleCI-era DOCKERHUB_USERNAME / DOCKERHUB_PASS, which aren't configured as GitHub Actions secrets. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
1 parent b32026b commit 3fb6760

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

.github/workflows/identity.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -345,8 +345,8 @@ jobs:
345345
- name: Log in to Docker Hub
346346
uses: docker/login-action@v3
347347
with:
348-
username: ${{ secrets.DOCKERHUB_USERNAME }}
349-
password: ${{ secrets.DOCKERHUB_PASS }}
348+
username: ${{ secrets.DOCKER_USERNAME }}
349+
password: ${{ secrets.DOCKER_PASSWORD }}
350350

351351
- name: Build and push identity-service image
352352
uses: docker/build-push-action@v6

0 commit comments

Comments
 (0)