diff --git a/.github/actions/deps/action.yml b/.github/actions/deps/action.yml index 4263493b..b3815eb5 100644 --- a/.github/actions/deps/action.yml +++ b/.github/actions/deps/action.yml @@ -73,21 +73,21 @@ runs: # Using sccache on Windows due to https://github.com/hendrikmuhs/ccache-action/issues/112 - name: Download Test Files - if: ${{ inputs.test-suite }} + if: ${{ inputs.test-suite == "true" }} uses: actions/checkout@v3 with: - repository: "${{ inputs.test-suite && inputs.testfile-repo || 'NA' }}" - token: "${{ inputs.test-suite && inputs.testfile-repo-token || 'NA' }}" + repository: "${{ inputs.testfile-repo }}" + token: "${{ inputs.testfile-repo-token }}" path: "${{ inputs.testfile-dir }}" - name: Prepare Test Files - if: ${{ inputs.test-suite }} + if: ${{ inputs.test-suite == "true" }} working-directory: "${{ inputs.testfile-dir }}" shell: bash run: 7z x "${{ inputs.dsi-nand-archive }}" - name: Check Out RetroArch - if: ${{ inputs.test-suite }} + if: ${{ inputs.test-suite == "true" }} uses: actions/checkout@v3 with: repository: libretro/RetroArch @@ -96,7 +96,7 @@ runs: token: "${{ inputs.testfile-repo-token }}" - name: Configure RetroArch - if: ${{ inputs.test-suite }} + if: ${{ inputs.test-suite == "true" }} env: CC: "ccache gcc" CXX: "ccache g++" @@ -156,7 +156,7 @@ runs: --enable-sse - name: Build RetroArch - if: ${{ inputs.test-suite }} + if: ${{ inputs.test-suite == "true" }} shell: bash working-directory: "${{ github.workspace }}/RetroArch" run: make -j$(nproc) \ No newline at end of file