From 562fd3826d15d4948972b9654f42870fa8b740cd Mon Sep 17 00:00:00 2001 From: Daniel Savosin Date: Sun, 17 Mar 2024 12:21:45 +0700 Subject: [PATCH] fix login action --- .github/workflows/continuous-integration.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index a83169b..8d262c7 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -29,9 +29,9 @@ jobs: - name: Login to docker hub uses: docker/login-action@v3 - env: - DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} - DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} + with: + username: ${{ secrets.DOCKER_USERNAME }} + password: ${{ secrets.DOCKER_PASSWORD }} - name: Read .env file uses: cardinalby/export-env-action@v2