-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
611b9b7
commit 8d6a671
Showing
2 changed files
with
52 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
name: build | ||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
validate-cfg-files: | ||
uses: KSP-RO/BuildTools/.github/workflows/validate-cfg-files.yml@master | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
|
||
- name: Download required assemblies | ||
run: echo "TODO" | ||
|
||
- name: Install Dependencies | ||
run: echo "TODO" | ||
|
||
- name: Update Version | ||
run: echo "TODO" | ||
# TODO: fetch tag, datetime, etc | ||
|
||
- name: Build Mod Solution | ||
run: msbuild /p:Configuration=Release /p:ReferencePath="${KSP_DIR}" ${GITHUB_WORKSPACE}/FreeIva.sln | ||
|
||
- name: Assemble Release | ||
run: echo "TODO" | ||
# TODO: copy license/readme/changelog etc? copy to temp location? | ||
|
||
- name: Upload Artifacts | ||
uses: actions/upload-artifact@v4 | ||
with: | ||
# TODO: add version to filename? | ||
name: FreeIva | ||
path: ${GITHUB_WORKSPACE}/GameData |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
name: Test | ||
|
||
on: | ||
workflow_dispatch: | ||
|
||
jobs: | ||
test: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: test | ||
run: echo "test" | ||
|