Skip to content

Commit

Permalink
fix: or2282 add some output so we know what is happening
Browse files Browse the repository at this point in the history
  • Loading branch information
Jan Lesage committed Jul 30, 2024
1 parent 1a7f9ee commit cdb8310
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/build-image.yml
Original file line number Diff line number Diff line change
Expand Up @@ -92,3 +92,9 @@ jobs:
with:
name: ${{ inputs.image-name }}
path: ~/${{ inputs.image-file }}

- name: Debug output
shell: bash
run: |
ls -al
14 changes: 14 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit cdb8310

Please sign in to comment.