mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-12-22 08:20:18 +00:00
Merge pull request #52 from piplup55/rework/ryujinx-mod-manager
Change Workflow
This commit is contained in:
commit
44f8ece7ce
4 changed files with 10 additions and 26 deletions
6
.github/actions/build/action.yml
vendored
6
.github/actions/build/action.yml
vendored
|
@ -11,7 +11,7 @@ inputs:
|
|||
required : false
|
||||
default : ''
|
||||
emu:
|
||||
description : 'what system the build is for: Switch, Ryujinx or yuzu'
|
||||
description : 'what system the build is for: Switch or Emulators'
|
||||
required : false
|
||||
default : 'Switch'
|
||||
|
||||
|
@ -62,9 +62,9 @@ runs:
|
|||
;
|
||||
cp -r ./romfs/ ./starlight_patch_100/atmosphere/contents/0100000000010000/.
|
||||
-
|
||||
name : Yuzu
|
||||
name : Emulators
|
||||
shell : bash
|
||||
if : ${{ inputs.emu == 'yuzu' }}
|
||||
if : ${{ inputs.emu == 'Emulators' }}
|
||||
run: |
|
||||
cd ./starlight_patch_100/
|
||||
mkdir ./SMOO/
|
||||
|
|
2
.github/workflows/build.yml
vendored
2
.github/workflows/build.yml
vendored
|
@ -22,7 +22,7 @@ jobs:
|
|||
build:
|
||||
strategy:
|
||||
matrix:
|
||||
emu : [ Switch, Ryujinx, yuzu ]
|
||||
emu : [ Switch, Emulators ]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
|
|
14
.github/workflows/dev-release.yml
vendored
14
.github/workflows/dev-release.yml
vendored
|
@ -21,12 +21,11 @@ jobs:
|
|||
build:
|
||||
strategy:
|
||||
matrix:
|
||||
emu : [ Switch, Ryujinx, yuzu ]
|
||||
emu : [ Switch, Emulators ]
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
filename1: ${{ steps.set-output.outputs.filename-Switch }}
|
||||
filename2: ${{ steps.set-output.outputs.filename-Ryujinx }}
|
||||
filename3: ${{ steps.set-output.outputs.filename-yuzu }}
|
||||
filename2: ${{ steps.set-output.outputs.filename-Emulators }}}
|
||||
steps:
|
||||
-
|
||||
name : Checkout
|
||||
|
@ -73,19 +72,12 @@ jobs:
|
|||
upload_url : ${{ steps.release.outputs.upload_url }}
|
||||
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
|
||||
-
|
||||
name : Attach build artifacts to release (Ryujinx)
|
||||
name : Attach build artifacts to release (Emulators)
|
||||
uses : ./.github/actions/attach
|
||||
with:
|
||||
filename : ${{ needs.build.outputs.filename2 }}
|
||||
upload_url : ${{ steps.release.outputs.upload_url }}
|
||||
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
|
||||
-
|
||||
name : Attach build artifacts to release (yuzu)
|
||||
uses : ./.github/actions/attach
|
||||
with:
|
||||
filename : ${{ needs.build.outputs.filename3 }}
|
||||
upload_url : ${{ steps.release.outputs.upload_url }}
|
||||
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
|
||||
|
||||
move:
|
||||
needs: attach
|
||||
|
|
14
.github/workflows/release.yml
vendored
14
.github/workflows/release.yml
vendored
|
@ -14,12 +14,11 @@ jobs:
|
|||
build:
|
||||
strategy:
|
||||
matrix:
|
||||
emu : [ Switch, Ryujinx, yuzu ]
|
||||
emu : [ Switch, Emulators ]
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
filename1: ${{ steps.set-output.outputs.filename-Switch }}
|
||||
filename2: ${{ steps.set-output.outputs.filename-Ryujinx }}
|
||||
filename3: ${{ steps.set-output.outputs.filename-yuzu }}
|
||||
filename2: ${{ steps.set-output.outputs.filename-Emulators }}
|
||||
steps:
|
||||
-
|
||||
name : Checkout
|
||||
|
@ -60,16 +59,9 @@ jobs:
|
|||
upload_url : ${{ steps.release.outputs.upload_url }}
|
||||
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
|
||||
-
|
||||
name : Attach build artifacts to release (Ryujinx)
|
||||
name : Attach build artifacts to release (Emulators)
|
||||
uses : ./.github/actions/attach
|
||||
with:
|
||||
filename : ${{ needs.build.outputs.filename2 }}
|
||||
upload_url : ${{ steps.release.outputs.upload_url }}
|
||||
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
|
||||
-
|
||||
name : Attach build artifacts to release (yuzu)
|
||||
uses : ./.github/actions/attach
|
||||
with:
|
||||
filename : ${{ needs.build.outputs.filename3 }}
|
||||
upload_url : ${{ steps.release.outputs.upload_url }}
|
||||
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
|
||||
|
|
Loading…
Reference in a new issue