From 9370f15f96d8ddf104a48c8ad960577a13158618 Mon Sep 17 00:00:00 2001 From: Erwan MATHIEU Date: Fri, 7 Jun 2024 17:18:26 +0200 Subject: [PATCH] Display contents of directories --- .../release-process_release-candidate.yml | 21 +++++++++++++------ 1 file changed, 15 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release-process_release-candidate.yml b/.github/workflows/release-process_release-candidate.yml index 8627c3988f..48e8c730e8 100644 --- a/.github/workflows/release-process_release-candidate.yml +++ b/.github/workflows/release-process_release-candidate.yml @@ -134,12 +134,6 @@ jobs: runs-on: ubuntu-latest needs: [create-installers, parse-version] steps: - - name: Download artifacts - uses: actions/download-artifact@v4.1.7 - with: - path: artifacts - merge-multiple: true - - name: Checkout Cura repo uses: actions/checkout@v4 with: @@ -165,6 +159,21 @@ jobs: body-source: file body: formatted_changelog.txt + - name: Download artifacts + uses: actions/download-artifact@v4.1.7 + with: + path: artifacts + merge-multiple: true + + - name: Display contents + run: | + ls -lh + + - name: Display artifacts contents + working-directory: artifacts + run: | + ls -lh + - name: Upload artifacts working-directory: artifacts run: |