Skip to content

Commit 0a5b2ee

Browse files
committed
fix conditionals and settings
1 parent 497cb3a commit 0a5b2ee

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
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 == false
77+
if: {{ inputs.use-nuget == false }}
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 == true
83+
if: ${{ inputs.use-nuget == true }}
8484
working-directory: ${{ inputs.working-directory }}
8585
run: nuget restore ${{ inputs.solution-file-path }} -Verbosity detailed
8686

.github/workflows/internal-ci.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,6 @@ jobs:
6262

6363
test-plugin-legacy:
6464
uses: './.github/workflows/internal-test-plugin-legacy.yml'
65-
with:
66-
use-nuget: true
6765

6866
test-assetbundle:
6967
uses: './.github/workflows/internal-test-assetbundle.yml'

.github/workflows/internal-test-plugin-legacy.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ jobs:
1919
with:
2020
ksp-zip-url: https://github.com/KSPModdingLibs/KSPLibs/raw/main/KSP-1.12.5.zip
2121
working-directory: ${{ env.TESTDIR }}
22+
use-nuget: true
2223

2324
- uses: ./.github/actions/assemble-release
2425
with:

0 commit comments

Comments
 (0)