mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-12-12 10:37:02 +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
|
- uses: actions/download-artifact@v4
|
||||||
with:
|
with:
|
||||||
name: cemu-bin-macos-x64
|
pattern: cemu-bin-macos*
|
||||||
path: cemu-bin-macos-x64
|
path: cemu-macos
|
||||||
|
|
||||||
- name: Initialize
|
- name: Initialize
|
||||||
run: |
|
run: |
|
||||||
|
|
@ -137,7 +137,12 @@ jobs:
|
||||||
rm -r ./${{ env.CEMU_FOLDER_NAME }}
|
rm -r ./${{ env.CEMU_FOLDER_NAME }}
|
||||||
|
|
||||||
- name: Create release from macos-bin
|
- 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
|
- name: Create release
|
||||||
run: |
|
run: |
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue