Skip to content

Commit

Permalink
ci: download correctly artifacts
Browse files Browse the repository at this point in the history
  • Loading branch information
javierguzman committed Jun 26, 2023
1 parent 8cdfa3e commit 3d19601
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
with:
name: artifacts
path: out/make
- name: Log make folder
- name: Show build items
run: |
ls -R out/make
Expand All @@ -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:
Expand Down

0 comments on commit 3d19601

Please sign in to comment.