diff --git a/.github/workflows/benchmark_tests.yml b/.github/workflows/benchmark_tests.yml index c7eb5c202..1923fdc80 100644 --- a/.github/workflows/benchmark_tests.yml +++ b/.github/workflows/benchmark_tests.yml @@ -86,11 +86,11 @@ jobs: # Authenticate to Docker Hub to avoid anonymous pull rate limits # (100 pulls/6h anonymous vs 200 pulls/6h authenticated). - name: Login to Docker Hub - if: ${{ vars.DOCKERHUB_USERNAME != '' }} + if: ${{ secrets.DOCKERHUB_LEROBOT_USERNAME != '' }} uses: docker/login-action@v3 # zizmor: ignore[unpinned-uses] with: - username: ${{ vars.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} + username: ${{ secrets.DOCKERHUB_LEROBOT_USERNAME }} + password: ${{ secrets.DOCKERHUB_LEROBOT_PASSWORD }} # Build the benchmark-specific image. Layer cache uses GHA cache (persists # across runners). The Dockerfile separates dep-install from source-copy, @@ -250,11 +250,11 @@ jobs: cache-binary: false - name: Login to Docker Hub - if: ${{ vars.DOCKERHUB_USERNAME != '' }} + if: ${{ secrets.DOCKERHUB_LEROBOT_USERNAME != '' }} uses: docker/login-action@v3 # zizmor: ignore[unpinned-uses] with: - username: ${{ vars.DOCKERHUB_USERNAME }} - password: ${{ secrets.DOCKERHUB_TOKEN }} + username: ${{ secrets.DOCKERHUB_LEROBOT_USERNAME }} + password: ${{ secrets.DOCKERHUB_LEROBOT_PASSWORD }} - name: Build MetaWorld benchmark image uses: docker/build-push-action@v6 # zizmor: ignore[unpinned-uses]