From 68834978cb662c9151012842afa97e83df84dbfe Mon Sep 17 00:00:00 2001 From: Jakub Trllo <43494761+iLLiCiTiT@users.noreply.github.com> Date: Wed, 16 Oct 2024 12:17:54 +0200 Subject: [PATCH] fix ids --- .github/workflows/deploy_docker_images.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/deploy_docker_images.yml b/.github/workflows/deploy_docker_images.yml index 291e68bc..eb51a7d7 100644 --- a/.github/workflows/deploy_docker_images.yml +++ b/.github/workflows/deploy_docker_images.yml @@ -1,4 +1,4 @@ -name: Docker Image Deployment +name: 🐳 Docker Image Deployment on: workflow_dispatch: @@ -20,17 +20,17 @@ jobs: password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build leecher image - id: build-docker-image + id: build-leecher-docker-image run: make build -C ./services/leecher - name: Push leecher image - id: build-docker-image + id: push-leecher-docker-image run: make dist -C ./services/leecher - name: Build processor image - id: build-docker-image + id: build-processor-docker-image run: make build -C ./services/processor - name: Push processor image - id: build-docker-image + id: push-processor-docker-image run: make dist -C ./services/processor