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 fd4ae9b commit 0bd38f9Copy full SHA for 0bd38f9
.github/actions/compile/action.yml
@@ -11,6 +11,9 @@ inputs:
11
type: string
12
dependency-identifiers:
13
14
+ dependency-msbuild-target:
15
+ type: string
16
+ default: CKANInstall
17
solution-file-path:
18
19
@@ -39,6 +42,12 @@ runs:
39
42
with:
40
43
dependency-identifiers: ${{ inputs.dependency-identifiers }}
41
44
45
+ - name: Install Dependencies With MSBuild
46
+ if: inputs.dependency-msbuild-target != ''
47
+ shell: bash
48
+ working-directory: ${{ github.workspace }}
49
+ run: msbuild /t:{{ inputs.dependency-msbuild-target }} /p:KSPRoot=${{ env.KSP_ROOT }} ${{ inputs.solution-file-path }}
50
+
51
- name: Download KSP Libs
52
shell: bash
53
run: |
0 commit comments