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