From cf336859a8ab8e73da9caa892e8d8f75cc2e1938 Mon Sep 17 00:00:00 2001 From: Alex Tymchuk Date: Mon, 24 Jul 2023 11:51:12 +0300 Subject: [PATCH] PMM-12351 build devcontainer with gh actions (#2380) * PMM-12351 build devcontainer with gh actions This fixes the reference to docker.io secrets * PMM-12351 fix a typo --- .github/workflows/devcontainer.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/devcontainer.yml b/.github/workflows/devcontainer.yml index 1a2957e7f4..9d44ae50e7 100644 --- a/.github/workflows/devcontainer.yml +++ b/.github/workflows/devcontainer.yml @@ -49,8 +49,8 @@ jobs: uses: docker/login-action@v2 with: registry: docker.io - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_PASSWORD }} + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_PASSWORD }} - name: Build and push to registries uses: docker/build-push-action@v4