Skip to content

Commit f78e9ca

Browse files
committed
Workflow Preamble
1 parent 262536b commit f78e9ca

File tree

5 files changed

+34
-2
lines changed

5 files changed

+34
-2
lines changed

.github/workflows/build.yml

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
name: build
2+
3+
on:
4+
push:
5+
paths:
6+
- '**/*.cs'
7+
pull_request:
8+
paths:
9+
- '**/*.cs'
10+
workflow_dispatch:
11+
workflow_call:
12+
13+
jobs:
14+
build:
15+
uses: KSPModdingLibs/KSPBuildTools/.github/workflows/build.yml@main
16+
with:
17+
solution-file-path: 'Source/KSPCommunityPartModules.sln'
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: create-release
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
version-string:
7+
type: string
8+
required: true
9+
10+
jobs:
11+
create-release:
12+
uses: KSPModdingLibs/KSPBuildTools/.github/workflows/create-release.yml@main
13+
with:
14+
solution-file-path: 'Source/KSPCommunityPartModules.sln'
15+
version-string: ${{ inputs.version-string }}

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ Source/bin/
33
Source/obj/
44
Source/packages/
55
Source/*.user
6-
Gamedata/KSPCommunityPartModules/Plugin/*.pdb
6+
GameData/KSPCommunityPartModules/Plugin/
File renamed without changes.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ This mod is meant as community project, so feel free to propose additional modul
88

99
### Download and installation
1010

11-
Compatible with **1.12.3** and up - Available on [CKAN]
11+
Compatible with **KSP 1.12.3** and up - Available on [CKAN]
1212

1313
**Installation**
1414
- Go to the **[GitHub release page](https://github.com/KSPModdingLibs/KSPCommunityPartModules/releases)** and download the newest file named `KSPCommunityPartModules_x.x.x.zip`

0 commit comments

Comments
 (0)