Skip to content

Commit 3bc9e67

Browse files
test: confirmation of dockerhub
Signed-off-by: Scott Schreckengaust <[email protected]>
1 parent 0148ecd commit 3bc9e67

File tree

3 files changed

+17
-17
lines changed

3 files changed

+17
-17
lines changed

.github/actions/build-and-push-container-image/action.yml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ inputs:
3939
description: 'The Docker Hub username'
4040
type: string
4141
required: false
42-
docker-hub-token:
42+
docker-hub-password:
4343
default: ${{ github.token }}
44-
description: 'The Docker Hub token'
44+
description: 'The Docker Hub password or token'
4545
type: string
4646
required: false
4747
github-container-registry-token:
@@ -95,15 +95,15 @@ runs:
9595
uses: docker/login-action@v3
9696
with:
9797
username: ${{ inputs.docker-hub-username }}
98-
password: ${{ inputs.docker-hub-token }}
98+
password: ${{ inputs.docker-hub-password }}
9999

100-
- name: Login to GitHub Container Registry
101-
id: login-github-container-registry
102-
uses: docker/login-action@v3
103-
with:
104-
registry: ghcr.io
105-
username: awslabs-mcp
106-
password: ${{ inputs.github-container-registry-token }}
100+
# - name: Login to GitHub Container Registry
101+
# id: login-github-container-registry
102+
# uses: docker/login-action@v3
103+
# with:
104+
# registry: ghcr.io
105+
# username: awslabs-mcp
106+
# password: ${{ inputs.github-container-registry-token }}
107107

108108
# - name: Login to Public ECR
109109
# uses: docker/login-action@v3

.github/workflows/build-and-push-container-image.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -96,12 +96,12 @@ jobs:
9696
username: ${{ secrets.DOCKERHUB_USERNAME }}
9797
password: ${{ secrets.DOCKERHUB_TOKEN }}
9898

99-
- name: Login to GitHub Container Registry
100-
uses: docker/login-action@v3
101-
with:
102-
registry: ghcr.io
103-
username: awslabs-mcp
104-
password: ${{ secrets.BOT_GITHUB_TOKEN }}
99+
# - name: Login to GitHub Container Registry
100+
# uses: docker/login-action@v3
101+
# with:
102+
# registry: ghcr.io
103+
# username: awslabs-mcp
104+
# password: ${{ secrets.BOT_GITHUB_TOKEN }}
105105

106106
# - name: Login to Public ECR
107107
# uses: docker/login-action@v3

.github/workflows/temp-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
image: ${{ matrix.package }}
3838
version: ${{ github.sha }}
3939
docker-hub-username: ${{ secrets.DOCKERHUB_USERNAME }}
40-
docker-hub-token: $${{ secrets.DOCKERHUB_TOKEN }}
40+
docker-hub-password: $${{ secrets.DOCKERHUB_TOKEN }}
4141
github-container-registry-token: ${{ secrets.BOT_GITHUB_TOKEN }}
4242

4343
- name: Display Image Version ${{ matrix.package }}

0 commit comments

Comments
 (0)