Skip to content

Commit

Permalink
Download
Browse files Browse the repository at this point in the history
  • Loading branch information
achamayou committed Jul 1, 2024
1 parent 6278e37 commit 86951b9
Showing 1 changed file with 13 additions and 1 deletion.
14 changes: 13 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,4 +85,16 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: pkg-${{ matrix.platform.name }}
path: build/${{ steps.make_deb.outputs.name }}
path: build/${{ steps.make_deb.outputs.name }}

download:
needs: build_release
runs-on: ubuntu-latest
steps:
- name: Download All Artifacts
uses: actions/download-artifact@v4
with:
path: pkg
pattern: pkg-*
merge-multiple: true
- run: ls -R pkg

0 comments on commit 86951b9

Please sign in to comment.