Skip to content

Commit

Permalink
ci(download-builds): download-artifact automatically extracts
Browse files Browse the repository at this point in the history
  • Loading branch information
YossiSaadi committed Mar 7, 2024
1 parent 58b1016 commit e517f84
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/actions/download-builds/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,10 @@ description: Download build artifacts for all the packages and extract them to t
runs:
using: "composite"
steps:
- name: Download
- name: Download and Extract
id: download
continue-on-error: true
uses: actions/download-artifact@v4
with:
name: ci-builds-${{ github.run_id }}-${{ github.run_attempt }}
- name: Extract
if: steps.download.outcome == 'success'
shell: bash
run: |
unzip ci-builds-${{ github.run_id }}-${{ github.run_attempt }}.zip -d .
path: packages/

0 comments on commit e517f84

Please sign in to comment.