From d40f943d04558cb91c6acf6928915cb0c3331fdd Mon Sep 17 00:00:00 2001 From: alavenant Date: Wed, 10 Jul 2024 17:16:42 +0200 Subject: [PATCH] Update cicd_docker.yml --- .github/workflows/cicd_docker.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/cicd_docker.yml b/.github/workflows/cicd_docker.yml index 46b5534..15d9df6 100644 --- a/.github/workflows/cicd_docker.yml +++ b/.github/workflows/cicd_docker.yml @@ -52,7 +52,7 @@ jobs: # https://github.com/docker/build-push-action - name: Build and push Docker image id: build-and-push - if: ${{ github.event_name != 'pull_request' }} + #if: ${{ github.event_name != 'pull_request' }} uses: docker/build-push-action@v5 with: context: . @@ -63,9 +63,9 @@ jobs: # pull and test - name : Pull Docker image id: pull-image - if: github.event_name != 'pull_request' + #if: github.event_name != 'pull_request' run: docker pull ${{ steps.meta.outputs.tags }} - name : Test Docker image id: test-image - if: github.event_name != 'pull_request' + #if: github.event_name != 'pull_request' run: docker run ${{ steps.meta.outputs.tags }} python -m pytest