From 214e0f010448e438794ef8527bca09298feec83c Mon Sep 17 00:00:00 2001 From: Eugene Burmakin Date: Sun, 7 Apr 2024 17:24:52 +0200 Subject: [PATCH] Update the workflow file to reflect the new name and the new secrets --- .github/workflows/{main.yml => build_and_push.yml} | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) rename .github/workflows/{main.yml => build_and_push.yml} (88%) diff --git a/.github/workflows/main.yml b/.github/workflows/build_and_push.yml similarity index 88% rename from .github/workflows/main.yml rename to .github/workflows/build_and_push.yml index 018cb91d..701066e9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/build_and_push.yml @@ -1,4 +1,4 @@ -name: Deploy Production +name: Docker image build and push on: workflow_dispatch: jobs: @@ -20,8 +20,8 @@ jobs: - name: Login to Docker Hub uses: docker/login-action@v3 with: - username: ${{ secrets.DOCKER_USERNAME }} - password: ${{ secrets.DOCKER_TOKEN }} + username: ${{ secrets.DOCKERHUB_USERNAME }} + password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build and push uses: docker/build-push-action@v2 with: