Skip to content

Commit 0ae8425

Browse files
committed
add github workflows
1 parent 4107a4b commit 0ae8425

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

.github/workflows/build.yml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
name: build
2+
3+
on:
4+
push:
5+
branches: [ master ]
6+
paths:
7+
- '**/*.cs'
8+
pull_request:
9+
paths:
10+
- '**/*.cs'
11+
workflow_dispatch:
12+
workflow_call:
13+
14+
jobs:
15+
build:
16+
uses: KSPModdingLibs/KSPBuildTools/.github/workflows/build.yml@main
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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+
version-string: ${{ inputs.version-string }}

0 commit comments

Comments
 (0)