File tree Expand file tree Collapse file tree 3 files changed +17
-17
lines changed
actions/build-and-push-container-image Expand file tree Collapse file tree 3 files changed +17
-17
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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 }}
You can’t perform that action at this time.
0 commit comments