mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-12-25 13:37:01 +00:00
Name output binary Cemu_<CONFIG> and always place it in bin/ (#179)
This commit is contained in:
parent
1373c76eb9
commit
4ed18a65c3
4 changed files with 20 additions and 9 deletions
14
.github/workflows/build.yml
vendored
14
.github/workflows/build.yml
vendored
|
|
@ -86,7 +86,11 @@ jobs:
|
|||
run: |
|
||||
cd build
|
||||
ninja
|
||||
|
||||
|
||||
- name: Prepare artifact
|
||||
if: ${{ inputs.deploymode == 'release' }}
|
||||
run: mv bin/Cemu_release bin/Cemu
|
||||
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
if: ${{ inputs.deploymode == 'release' }}
|
||||
|
|
@ -188,10 +192,14 @@ jobs:
|
|||
run: |
|
||||
cd build
|
||||
cmake --build . --config ${{ env.BUILD_MODE }} -j 2
|
||||
|
||||
|
||||
- name: Prepare artifact
|
||||
if: ${{ inputs.deploymode == 'release' }}
|
||||
run: Rename-Item bin/Cemu_release.exe Cemu.exe
|
||||
|
||||
- name: Upload artifact
|
||||
uses: actions/upload-artifact@v3
|
||||
if: ${{ inputs.deploymode == 'release' }}
|
||||
with:
|
||||
name: cemu-bin-windows-x64
|
||||
path: ./bin/Cemu.exe
|
||||
path: ./bin/Cemu.exe
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue