Skip to content

Commit 47cf427

Browse files
committed
build action: don't install ckan by default
1 parent 6fc8583 commit 47cf427

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,9 @@ on:
2424
you should set this to false
2525
use-ckan:
2626
type: boolean
27-
default: true
27+
default: false
2828
description: >
29-
If CKAN should be installed. If your mod has no dependencies you can set this to false to save some time
30-
during builds.
29+
If CKAN should be installed to install dependencies in the msbuild project.
3130
secrets:
3231
ksp-zip-password:
3332
required: false
@@ -47,7 +46,7 @@ jobs:
4746

4847
# Install CKAN and set up an instance
4948
- uses: KSPModdingLibs/KSPBuildTools/.github/actions/setup-ckan@main
50-
if: ${{ inputs.use-ckan && (inputs.use-msbuild || inputs.dependency-identifiers) }}
49+
if: ${{ (inputs.use-ckan && inputs.use-msbuild) || inputs.dependency-identifiers) }}
5150

5251
# Install any listed CKAN dependencies
5352
- uses: KSPModdingLibs/KSPBuildTools/.github/actions/install-dependencies@main

0 commit comments

Comments
 (0)