mirror of
https://github.com/CraftyBoss/SuperMarioOdysseyOnline.git
synced 2024-11-17 00:45:10 +00:00
addressed feedback
This commit is contained in:
parent
4d242a5e44
commit
936e0fd49f
3 changed files with 7 additions and 7 deletions
8
.github/actions/build/action.yml
vendored
8
.github/actions/build/action.yml
vendored
|
@ -11,7 +11,7 @@ inputs:
|
|||
required : false
|
||||
default : ''
|
||||
emu:
|
||||
description : 'what system the build is for: Switch or Emulator'
|
||||
description : 'what system the build is for: Switch or Emulators'
|
||||
required : false
|
||||
default : 'Switch'
|
||||
|
||||
|
@ -50,7 +50,7 @@ runs:
|
|||
cache-from : type=gha,scope=smoo-build-env
|
||||
cache-to : type=gha,scope=smoo-build-env,mode=max
|
||||
-
|
||||
name : Switch
|
||||
name : Build mod
|
||||
shell : bash
|
||||
run: |
|
||||
docker run --rm \
|
||||
|
@ -62,9 +62,9 @@ runs:
|
|||
;
|
||||
cp -r ./romfs/ ./starlight_patch_100/atmosphere/contents/0100000000010000/.
|
||||
-
|
||||
name : Emulator
|
||||
name : Emulators
|
||||
shell : bash
|
||||
if : ${{ inputs.emu == 'Emulator' }}
|
||||
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, Emulator ]
|
||||
emu : [ Switch, Emulators ]
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
-
|
||||
|
|
4
.github/workflows/release.yml
vendored
4
.github/workflows/release.yml
vendored
|
@ -14,7 +14,7 @@ jobs:
|
|||
build:
|
||||
strategy:
|
||||
matrix:
|
||||
emu : [ Switch, Emulator ]
|
||||
emu : [ Switch, Emulators ]
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
filename1: ${{ steps.set-output.outputs.filename-Switch }}
|
||||
|
@ -59,7 +59,7 @@ jobs:
|
|||
upload_url : ${{ steps.release.outputs.upload_url }}
|
||||
GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
|
||||
-
|
||||
name : Attach build artifacts to release (Emulator)
|
||||
name : Attach build artifacts to release (Emulators)
|
||||
uses : ./.github/actions/attach
|
||||
with:
|
||||
filename : ${{ needs.build.outputs.filename2 }}
|
||||
|
|
Loading…
Reference in a new issue