diff --git a/.github/actions/build/action.yml b/.github/actions/build/action.yml index 454f7f2..f82cf2f 100644 --- a/.github/actions/build/action.yml +++ b/.github/actions/build/action.yml @@ -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/ diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 66c84d8..25259ca 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,7 +22,7 @@ jobs: build: strategy: matrix: - emu : [ Switch, Emulator ] + emu : [ Switch, Emulators ] runs-on: ubuntu-latest steps: - diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 498101a..9a4dad0 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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 }}