You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, if you use the Cake Action in multiple steps within the same build definition, like in this example:
steps:
- name: Compileuses: ecampidoglio/cake-action@v1.0.1with:
target: Compile
- name: Run the testsuses: ecampidoglio/cake-action@v1.0.1with:
target: Test
The second step will fail with the following error message:
dotnet tool install --tool-path tools Cake.Tool
Tool 'cake.tool' is already installed.
##[error]The process 'dotnet' failed with exit code 1
That's because the Cake Action tries to install the Cake.Tool before every run, which obviously doesn't work if the tool has already been installed by a previous instance.
The text was updated successfully, but these errors were encountered:
Right now, if you use the Cake Action in multiple steps within the same build definition, like in this example:
The second step will fail with the following error message:
That's because the Cake Action tries to install the Cake.Tool before every run, which obviously doesn't work if the tool has already been installed by a previous instance.
The text was updated successfully, but these errors were encountered: