Skip to content

Commit a17efc2

Browse files
committed
:sufferbeale:
1 parent 963927a commit a17efc2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/actions/compile/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,13 +74,13 @@ runs:
7474
7575
- name: Restore Mod Solution
7676
shell: bash
77-
if: ${{ !inputs.use-nuget }}
77+
if: ${{ inputs.use-nuget != 'true'}} # https://github.com/actions/runner/issues/1483 :sufferbeale:
7878
working-directory: ${{ inputs.working-directory }}
7979
run: dotnet restore ${{ inputs.solution-file-path }} ${{ runner.debug && '-v:diagnostic' }}
8080

8181
- name: Restore Mod Solution (NuGet)
8282
shell: bash
83-
if: ${{ inputs.use-nuget }}
83+
if: ${{ inputs.use-nuget == 'true'}}
8484
working-directory: ${{ inputs.working-directory }}
8585
run: nuget restore ${{ inputs.solution-file-path }} -Verbosity detailed
8686

0 commit comments

Comments
 (0)