Update the workflow file to reflect the new name and the new secrets

This commit is contained in:
Eugene Burmakin
2024-04-07 17:24:52 +02:00
parent cfab6646c9
commit 214e0f0104

View File

@@ -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: