Fix speeling

This commit is contained in:
Mark McDowall 2024-01-04 12:06:23 -08:00
parent 95db40a6b3
commit 6e83a0cbac
2 changed files with 3 additions and 3 deletions

View File

@ -51,7 +51,7 @@ runs:
path: _tests
- name: Download Binary Artifact
if: ${{ inputs.binary_artifact }} != ''
if: ${{ inputs.integation_tests }}
uses: actions/download-artifact@v4
with:
name: ${{ inputs.binary_artifact }}
@ -60,7 +60,7 @@ runs:
- name: Set up binary artifact
if: ${{ inputs.binary_path != '' }}
shell: bash
run: mv ${{inputs.binary_path}} _tests/bin
run: mv ./_artifacts/${{inputs.binary_path}} _tests/bin
- name: Make executable
if: startsWith(inputs.os, 'windows') != true

View File

@ -187,6 +187,6 @@ jobs:
artifact: ${{ matrix.artifact }}
pattern: Sonarr.*.Test.dll
filter: ${{ matrix.filter }}
integration_test: true
integration_tests: true
binary_artifact: ${{ matrix.binary_artifact }}
binary_path: ${{ matrix.binary_path }}