Skip to content

Commit 3f37213

Browse files
authored
build.yml: fix input -> inputs
1 parent 3cc894c commit 3f37213

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -47,13 +47,13 @@ jobs:
4747

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

5252
# Install any listed CKAN dependencies
5353
- uses: KSPModdingLibs/KSPBuildTools/.github/actions/install-dependencies@main
54-
if: ${{ input.dependency-identifiers }}
54+
if: ${{ inputs.dependency-identifiers }}
5555
with:
56-
dependency-identifiers: ${{ input.dependency-identifiers }}
56+
dependency-identifiers: ${{ inputs.dependency-identifiers }}
5757

5858
# Compile the mod
5959
- uses: KSPModdingLibs/KSPBuildTools/.github/actions/compile@main
@@ -67,4 +67,4 @@ jobs:
6767
- uses: KSPModdingLibs/KSPBuildTools/.github/actions/assemble-release@main
6868
with:
6969
artifacts: ${{ inputs.artifacts }}
70-
output-file-name: ${{ github.event.repository.name }}-${{ inputs.build-configuration }}
70+
output-file-name: ${{ github.event.repository.name }}-${{ inputs.build-configuration }}

0 commit comments

Comments
 (0)