From cdb83102dfff83ff4d90c718270fb48babfe2ea8 Mon Sep 17 00:00:00 2001 From: Jan Lesage Date: Tue, 30 Jul 2024 12:10:24 +0200 Subject: [PATCH] fix: or2282 add some output so we know what is happening --- .github/workflows/build-image.yml | 6 ++++++ .github/workflows/main.yml | 14 ++++++++++++++ 2 files changed, 20 insertions(+) diff --git a/.github/workflows/build-image.yml b/.github/workflows/build-image.yml index becc35cbc..0ed793fa8 100644 --- a/.github/workflows/build-image.yml +++ b/.github/workflows/build-image.yml @@ -92,3 +92,9 @@ jobs: with: name: ${{ inputs.image-name }} path: ~/${{ inputs.image-file }} + + - name: Debug output + shell: bash + run: | + ls -al + diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index eb86d348a..48a0c365f 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -376,6 +376,20 @@ jobs: - name: Login to Amazon ECR uses: aws-actions/amazon-ecr-login@v2 + - name: Download artifact + uses: actions/download-artifact@v4 + continue-on-error: false + with: + name: ${{ matrix.image }} + path: ~/ + + - name: Debug output + shell: bash + run: | + ls -al + unzip ${{ matrix.image }}.zip + ls-al + - name: Download artifact uses: actions/download-artifact@v4 continue-on-error: false