Skip to content

Commit

Permalink
Simplify download of native artifacts using download-artifact pattern…
Browse files Browse the repository at this point in the history
…/merge-multiple
  • Loading branch information
roblabla committed Aug 31, 2024
1 parent 8e6932b commit 1587d4d
Showing 1 changed file with 3 additions and 27 deletions.
30 changes: 3 additions & 27 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,36 +138,12 @@ jobs:
repository: ${{ github.event.inputs.repo }}
ref: ${{ github.event.inputs.rev }}
fetch-depth: 0

#- name: Download Windows x86 binaries
# uses: actions/download-artifact@v4
# with:
# name: natives-win_x86_32

- name: Download Windows x86_64 binaries
uses: actions/download-artifact@v4
with:
name: natives-win_x86_64

- name: Download MacOS x86_64 binaries
uses: actions/download-artifact@v4
with:
name: natives-mac_x86_64

- name: Download MacOS ARM64 binaries
uses: actions/download-artifact@v4
with:
name: natives-mac_arm_64

- name: Download Linux x86_64 binaries
uses: actions/download-artifact@v4
with:
name: natives-linux_x86_64

- name: Download Linux ARM64 binaries
- name: Download native binaries
uses: actions/download-artifact@v4
with:
name: natives-linux_arm_64
pattern: natives-*
merge-multiple: true

- name: Extract all binaries
run: |
Expand Down

0 comments on commit 1587d4d

Please sign in to comment.