diff --git a/.github/workflows/client-deploy.yml b/.github/workflows/client-deploy.yml index 1a63c04..ef5697b 100644 --- a/.github/workflows/client-deploy.yml +++ b/.github/workflows/client-deploy.yml @@ -27,8 +27,8 @@ jobs: name: Login to Docker Hub with: # generate some credentials from Dockerhub and store them into the repo secrets - username: ${{ secrets.DOCKER_HUB_USERNAME }} - password: ${{ secrets.DOCKER_HUB_TOKEN }} + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} # prepare buildx for docker - uses: docker/setup-buildx-action@v1 @@ -41,4 +41,4 @@ jobs: context: ./frontend file: ./frontend/Dockerfile push: true - tags: ${{ secrets.DOCKER_HUB_USERNAME }}/${{ secrets.DOCKER_HUB_SERVER_IMAGE_NAME }}:latest + tags: ${{ secrets.DOCKERHUB_USERNAME }}/${{ secrets.DOCKER_HUB_SERVER_IMAGE_NAME }}:latest diff --git a/.github/workflows/server-deploy.yml b/.github/workflows/server-deploy.yml index 6d0a7a3..a2de7bf 100644 --- a/.github/workflows/server-deploy.yml +++ b/.github/workflows/server-deploy.yml @@ -27,8 +27,8 @@ jobs: name: Login to Docker Hub with: # generate some credentials from Dockerhub and store them into the repo secrets - username: ${{ secrets.DOCKER_HUB_USERNAME }} - password: ${{ secrets.DOCKER_HUB_TOKEN }} + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} # prepare buildx for docker - uses: docker/setup-buildx-action@v1 @@ -41,4 +41,4 @@ jobs: context: ./backend file: ./backend/Dockerfile.prod push: true - tags: ${{ secrets.DOCKER_HUB_USERNAME }}/${{ secrets.DOCKER_HUB_SERVER_IMAGE_NAME }}:latest + tags: ${{ secrets.DOCKERHUB_USERNAME }}/${{ secrets.DOCKER_HUB_SERVER_IMAGE_NAME }}:latest