From 3d19601b8d33d623401f3f11a8034dfb7a2be06b Mon Sep 17 00:00:00 2001 From: Javier Guzman <906599+javierguzman@users.noreply.github.com> Date: Mon, 26 Jun 2023 08:53:32 +0200 Subject: [PATCH] ci: download correctly artifacts --- .github/workflows/release.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8319577c2..8480f2dcd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -123,7 +123,7 @@ jobs: with: name: artifacts path: out/make - - name: Log make folder + - name: Show build items run: | ls -R out/make @@ -145,13 +145,14 @@ jobs: name: artifacts - name: Log downloaded artifacts run: | - ls -R ${{ github.workspace }}/artifacts + ls -R ${{ github.workspace }} + ls -R ${{ github.workspace }}/out/make - name: Extract artifacts run: | mkdir dist - mv ${{ github.workspace }}/artifacts* dist/ + mv ${{ github.workspace }}/out/make* dist/ - run: | - ls -R ${{ github.workspace }}/out + ls -R ${{ github.workspace }}/out/make ls -R ${{ github.workspace}}/dist - name: Run semantic-release env: