From aff4a515d339e21a59e799239e4ca923b865a3e1 Mon Sep 17 00:00:00 2001 From: Viren Baraiya Date: Fri, 29 Sep 2023 08:40:56 -0700 Subject: [PATCH] add dockerhub login to the ci --- .github/workflows/ci.yaml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 68169b9..b5317aa 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -7,6 +7,12 @@ jobs: runs-on: ubuntu-latest name: Gradle Build steps: + - name: Login to Docker Hub Container Registry + uses: docker/login-action@v1 + with: + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} + - name: Checkout repo uses: actions/checkout@v3 - name: Set up Zulu JDK 17