We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 963927a commit a17efc2Copy full SHA for a17efc2
.github/actions/compile/action.yml
@@ -74,13 +74,13 @@ runs:
74
75
- name: Restore Mod Solution
76
shell: bash
77
- if: ${{ !inputs.use-nuget }}
+ if: ${{ inputs.use-nuget != 'true'}} # https://github.com/actions/runner/issues/1483 :sufferbeale:
78
working-directory: ${{ inputs.working-directory }}
79
run: dotnet restore ${{ inputs.solution-file-path }} ${{ runner.debug && '-v:diagnostic' }}
80
81
- name: Restore Mod Solution (NuGet)
82
83
- if: ${{ inputs.use-nuget }}
+ if: ${{ inputs.use-nuget == 'true'}}
84
85
run: nuget restore ${{ inputs.solution-file-path }} -Verbosity detailed
86
0 commit comments