mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-18 08:19:59 +00:00
Update windows-macOS-Linux.yml
This commit is contained in:
parent
5e1d5c2a4d
commit
007419ec6a
1 changed files with 32 additions and 2 deletions
30
.github/workflows/windows-macOS-Linux.yml
vendored
30
.github/workflows/windows-macOS-Linux.yml
vendored
|
@ -103,3 +103,33 @@ jobs:
|
||||||
with:
|
with:
|
||||||
name: DolphinMPN-Linux
|
name: DolphinMPN-Linux
|
||||||
path: /home/runner/work/Dolphin-MPN/Dolphin-MPN/build/Binaries/
|
path: /home/runner/work/Dolphin-MPN/Dolphin-MPN/build/Binaries/
|
||||||
|
# Zip Artifact
|
||||||
|
- name: Zip Artifact
|
||||||
|
if: matrix.os == 'ubuntu-latest'
|
||||||
|
run: 7z a -tzip /home/runner/DolphinMPN-linux /home/runner/work/Dolphin-MPN-src/Dolphin-MPN-src/build/Binaries/*
|
||||||
|
# New Release
|
||||||
|
- name: New Release
|
||||||
|
if: ${{ startsWith(github.ref, 'refs/tags/') }} && matrix.os == 'ubuntu-latest'
|
||||||
|
uses: ncipollo/release-action@v1.12.0
|
||||||
|
with:
|
||||||
|
artifacts: /home/runner/DolphinMPN-linux.7z
|
||||||
|
# Zip Artifact
|
||||||
|
- name: Zip Artifact
|
||||||
|
if: matrix.os == 'macos-latest'
|
||||||
|
run: 7z a -tzip /Users/runner/DolphinMPN-macOS-intel /Users/runner/work/Dolphin-MPN-src/Dolphin-MPN-src/build/Binaries/*
|
||||||
|
# New Release
|
||||||
|
- name: New Release
|
||||||
|
if: ${{ startsWith(github.ref, 'refs/tags/') }} && matrix.os == 'macos-latest'
|
||||||
|
uses: ncipollo/release-action@v1.12.0
|
||||||
|
with:
|
||||||
|
artifacts: /Users/runner/DolphinMPN-macOS-intel.7z
|
||||||
|
# Zip Artifact
|
||||||
|
- name: Zip Artifact
|
||||||
|
if: ${{ startsWith(github.ref, 'refs/tags/') }} && matrix.os == 'windows-latest'
|
||||||
|
run: 7z a -tzip D:/DolphinMPN-win32 D:/a/dolphin-mpn-src/dolphin-mpn-src/Binary/x64/*
|
||||||
|
# New Release
|
||||||
|
- name: New Release
|
||||||
|
if: ${{ startsWith(github.ref, 'refs/tags/') }} && matrix.os == 'windows-latest'
|
||||||
|
uses: ncipollo/release-action@v1.12.0
|
||||||
|
with:
|
||||||
|
artifacts: D:/DolphinMPN-win32.7z
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue