From d890968555b0657c2140e10c73f9b2ab854b4722 Mon Sep 17 00:00:00 2001 From: Mark Ridgwell Date: Tue, 15 Oct 2024 17:16:42 +0100 Subject: [PATCH] changed tool --- .github/actions/dotnet-tool/action.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/actions/dotnet-tool/action.yml b/.github/actions/dotnet-tool/action.yml index bea59913..e06bcdb4 100644 --- a/.github/actions/dotnet-tool/action.yml +++ b/.github/actions/dotnet-tool/action.yml @@ -17,7 +17,7 @@ runs: - name: "Install dotnet tool (Latest)" if: inputs.TOOL_VERSION == 'latest' shell: bash - run: dotnet tool install --local --no-http-cache "${{inputs.TOOL_NAME}}" + run: dotnet tool install --local --no-http-cache ${{inputs.TOOL_NAME}} env: DOTNET_ROOT: "${{github.workspace}}/.dotnet/${{github.sha}}-${{github.run_id}}-${{github.run_number}}-${{github.run_attempt}}" DOTNET_INSTALL_DIR: "${{github.workspace}}/.dotnet/${{github.sha}}-${{github.run_id}}-${{github.run_number}}-${{github.run_attempt}}" @@ -35,7 +35,7 @@ runs: - name: "Install dotnet tool (Specific Version)" if: inputs.TOOL_VERSION != 'latest' shell: bash - run: dotnet tool install --local --no-http-cache "${{inputs.TOOL_NAME}}" --version ${{inputs.TOOL_VERSION}} + run: dotnet tool install --local --no-http-cache ${{inputs.TOOL_NAME}} --version ${{inputs.TOOL_VERSION}} env: DOTNET_ROOT: "${{github.workspace}}/.dotnet/${{github.sha}}-${{github.run_id}}-${{github.run_number}}-${{github.run_attempt}}" DOTNET_INSTALL_DIR: "${{github.workspace}}/.dotnet/${{github.sha}}-${{github.run_id}}-${{github.run_number}}-${{github.run_attempt}}"