From f5d1150965729d526718f3c33d0eb8902f1641ec Mon Sep 17 00:00:00 2001 From: Marco Aceti Date: Sat, 5 Dec 2020 15:19:16 +0100 Subject: [PATCH] Remove debug commands from GitHub Actions workflow file --- .github/workflows/docker.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index eae1fa2..9e31b1b 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -122,13 +122,11 @@ jobs: - name: Save image as tar archive if: ${{ github.event_name != 'pull_request' }} run: | - docker image ls # debug docker save ${{ env.IMAGE_TAG }}:${{ env.HASH_VERSION }}-${{ env.SAFE_ARCH }} -o ${{ env.SAFE_ARCH }}.tar - name: Save image as tar archive (pull request) if: ${{ github.event_name == 'pull_request' }} run: | - docker image ls # debug docker save tdlightbotapi:${{ env.HASH_VERSION }}-${{ env.SAFE_ARCH }} -o ${{ env.SAFE_ARCH }}.tar - name: Upload image as artifact