Remove debug commands from GitHub Actions workflow file

This commit is contained in:
Marco Aceti 2020-12-05 15:19:16 +01:00
parent 8f0f343203
commit f5d1150965
Signed by: MarcoBuster
GPG Key ID: E4ABA81298E4F14D
1 changed files with 0 additions and 2 deletions

View File

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