mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-12-12 19:37:01 +00:00
CI: Fix deploy workflow for multiarch macos (#1642)
This commit is contained in:
parent
73b1dc1663
commit
1ec8c713b4
1 changed files with 8 additions and 3 deletions
11
.github/workflows/deploy_release.yml
vendored
11
.github/workflows/deploy_release.yml
vendored
|
|
@ -95,8 +95,8 @@ jobs:
|
|||
|
||||
- uses: actions/download-artifact@v4
|
||||
with:
|
||||
name: cemu-bin-macos-x64
|
||||
path: cemu-bin-macos-x64
|
||||
pattern: cemu-bin-macos*
|
||||
path: cemu-macos
|
||||
|
||||
- name: Initialize
|
||||
run: |
|
||||
|
|
@ -137,7 +137,12 @@ jobs:
|
|||
rm -r ./${{ env.CEMU_FOLDER_NAME }}
|
||||
|
||||
- name: Create release from macos-bin
|
||||
run: cp cemu-bin-macos-x64/Cemu.dmg upload/cemu-${{ env.CEMU_VERSION }}-macos-12-x64.dmg
|
||||
run: |
|
||||
cd cemu-macos
|
||||
for bin_dir in cemu-bin-macos-*; do
|
||||
arch="${bin_dir##cemu-bin-macos-}"
|
||||
cp $bin_dir/Cemu.dmg ../upload/cemu-${{ env.CEMU_VERSION }}-macos-12-$arch.dmg
|
||||
done
|
||||
|
||||
- name: Create release
|
||||
run: |
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue