Skip to content

Commit e0f6b16

Browse files
authored
Fix Docker Hub secret names for build_portable_linux_pytorch_dockers (#3159)
Docker credentials were using the ones from my fork and not rocm/pytorch credentials: https://github.com/ROCm/pytorch/actions/runs/24479854145/job/71541505148 Latest build https://github.com/ROCm/pytorch/actions/runs/24480169722/job/71542549933
1 parent 1b685db commit e0f6b16

File tree

1 file changed

+2
-8
lines changed

1 file changed

+2
-8
lines changed

.github/workflows/build_portable_linux_pytorch_dockers.yml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -187,11 +187,8 @@ jobs:
187187
- name: Log in to Docker Hub
188188
uses: docker/login-action@v3
189189
with:
190-
# ROCm/pytorch: use DOCKERUSERNAME / DOCKERTOKEN
191-
# username: ${{ secrets.DOCKERUSERNAME }}
192-
# password: ${{ secrets.DOCKERTOKEN }}
193190
username: ${{ secrets.DOCKERUSERNAME }}
194-
password: ${{ secrets.DCKRPAT }}
191+
password: ${{ secrets.DOCKERTOKEN }}
195192

196193
- name: Prepare build context
197194
run: |
@@ -366,11 +363,8 @@ jobs:
366363
- name: Log in to Docker Hub
367364
uses: docker/login-action@v3
368365
with:
369-
# ROCm/pytorch: use DOCKERUSERNAME / DOCKERTOKEN
370-
# username: ${{ secrets.DOCKERUSERNAME }}
371-
# password: ${{ secrets.DOCKERTOKEN }}
372366
username: ${{ secrets.DOCKERUSERNAME }}
373-
password: ${{ secrets.DCKRPAT }}
367+
password: ${{ secrets.DOCKERTOKEN }}
374368

375369
- name: Prepare build context
376370
run: |

0 commit comments

Comments
 (0)