Skip to content

Commit b7ffcc8

Browse files
authored
Fix: Docker CI to use org tokens (#6655)
* update Dockerhub creds to new scheme * Merge branch 'release-v6.0.1' into fix-docker-ci
1 parent b2590bc commit b7ffcc8

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ concurrency:
1313
cancel-in-progress: true
1414

1515
env:
16-
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
17-
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
16+
DOCKER_PASSWORD: ${{ secrets.DH_KEY }}
17+
DOCKER_USERNAME: ${{ secrets.DH_ORG }}
1818
# Enable self-hosted runners for the sigp repo only.
1919
SELF_HOSTED_RUNNERS: ${{ github.repository == 'sigp/lighthouse' }}
2020

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ concurrency:
1010
cancel-in-progress: true
1111

1212
env:
13-
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }}
14-
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }}
13+
DOCKER_PASSWORD: ${{ secrets.DH_KEY }}
14+
DOCKER_USERNAME: ${{ secrets.DH_ORG }}
1515
REPO_NAME: ${{ github.repository_owner }}/lighthouse
1616
IMAGE_NAME: ${{ github.repository_owner }}/lighthouse
1717
# Enable self-hosted runners for the sigp repo only.

0 commit comments

Comments
 (0)