Skip to content

Commit

Permalink
Update actions to strip excess dlls
Browse files Browse the repository at this point in the history
NathanKell committed Nov 7, 2023
1 parent caf8dc8 commit 8ee8a1e
Showing 2 changed files with 11 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/attachReleaseArtifacts.yml
Original file line number Diff line number Diff line change
@@ -40,7 +40,12 @@ jobs:

- name: Build mod solution
run: msbuild /p:Configuration=Release /p:ReferencePath="${{ steps.download-assemblies.outputs.ksp-dll-path }}" ${GITHUB_WORKSPACE}/source/ContractConfigurator.sln


- name: Remove excess DLLs
uses: KSP-RO/BuildTools/remove-excess-dlls@master
with:
path: ${GITHUB_WORKSPACE}/GameData/

- name: Update version file
uses: KSP-RO/BuildTools/update-version-file@master
with:
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -43,6 +43,11 @@ jobs:
- name: Build mod solution
run: msbuild /p:Configuration=Release /p:ReferencePath="${{ steps.download-assemblies.outputs.ksp-dll-path }}" ${GITHUB_WORKSPACE}/source/ContractConfigurator.sln

- name: Remove excess DLLs
uses: KSP-RO/BuildTools/remove-excess-dlls@master
with:
path: ${GITHUB_WORKSPACE}/GameData/

- name: Build metadata
uses: KSP-RO/BuildTools/update-version-file@master
with:

0 comments on commit 8ee8a1e

Please sign in to comment.