diff --git a/.github/workflows/merge.yml b/.github/workflows/merge.yml index 6aa226b5..016f0ae7 100644 --- a/.github/workflows/merge.yml +++ b/.github/workflows/merge.yml @@ -11,6 +11,12 @@ jobs: steps: - name: Checkout code uses: actions/checkout@v2 + + - name: Log in to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Create remote builder certificates run: | diff --git a/.github/workflows/pull-request.yml b/.github/workflows/pull-request.yml index 2a20e739..f6f85348 100644 --- a/.github/workflows/pull-request.yml +++ b/.github/workflows/pull-request.yml @@ -11,6 +11,12 @@ jobs: - name: Checkout code uses: actions/checkout@v2 + - name: Log in to Docker Hub + uses: docker/login-action@v3 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Create remote builder certificates run: | echo "${{ secrets.BUILDKIT_CA_PEM }}" > ${{ github.workspace }}/client-ca.pem