mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-17 07:49:21 +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
34
.github/workflows/windows-macOS-Linux.yml
vendored
34
.github/workflows/windows-macOS-Linux.yml
vendored
|
@ -89,17 +89,47 @@ jobs:
|
|||
with:
|
||||
name: DolphinMPN-win32
|
||||
path: D:\a\Dolphin-MPN\Dolphin-MPN\Binary\x64
|
||||
# Upload Artifact
|
||||
# Upload Artifact
|
||||
- name: Upload Build Artifact
|
||||
if: matrix.os == 'macos-latest'
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: DolphinMPN-macOS
|
||||
path: /Users/runner/work/Dolphin-MPN/Dolphin-MPN/build/Binaries/
|
||||
# Upload Artifact
|
||||
# Upload Artifact
|
||||
- name: Upload Build Artifact
|
||||
if: matrix.os == 'linux-latest'
|
||||
uses: actions/upload-artifact@v2
|
||||
with:
|
||||
name: DolphinMPN-Linux
|
||||
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