From f8a3deefc4e63ad7d9a21963a3b8950f595099d8 Mon Sep 17 00:00:00 2001 From: piplup <100526773+piplup55@users.noreply.github.com> Date: Mon, 5 Jun 2023 20:58:28 +0100 Subject: [PATCH] a --- .github/workflows/build.yml | 2 +- .github/workflows/release.yml | 14 +++----------- 2 files changed, 4 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 76179ae..66c84d8 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -22,7 +22,7 @@ jobs: build: strategy: matrix: - emu : [ Switch, Ryujinx, yuzu ] + emu : [ Switch, Emulator ] runs-on: ubuntu-latest steps: - diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 859a4d7..498101a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,12 +14,11 @@ jobs: build: strategy: matrix: - emu : [ Switch, Ryujinx, yuzu ] + emu : [ Switch, Emulator ] 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-Emulator }} 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 (Emulator) 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 }}