From e9b4fd12b632a170e29997cfa78d82275e687782 Mon Sep 17 00:00:00 2001 From: Phantomical Date: Mon, 4 May 2026 20:35:44 -0700 Subject: [PATCH 01/16] Initial release.yml workflow This just mirrors build.yml for the moment. I'll be adjusting this once I can get a look at the intermediate artifacts --- .github/workflows/release.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..eca17bb --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,12 @@ +name: Release + +on: + release: + types: [published] + pull_request: + paths: + - .github/workflows/release.yml + +jobs: + build: + uses: KSPModdingLibs/KSPBuildTools/.github/workflows/build.yml@1.1.1 From f97ad1413c4ac8a7483cc2dcffb6ff41c818cb15 Mon Sep 17 00:00:00 2001 From: Phantomical Date: Mon, 4 May 2026 23:05:25 -0700 Subject: [PATCH 02/16] Add setup to actually build the release zip --- .github/workflows/build.yml | 3 +++ .github/workflows/release.yml | 29 +++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 623b4dc..8f47d59 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -18,3 +18,6 @@ on: jobs: build: uses: KSPModdingLibs/KSPBuildTools/.github/workflows/build.yml@1.1.1 + with: + artifacts: + GameData Extras LICENSE* README* CHANGELOG* diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index eca17bb..c881f1d 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,3 +10,32 @@ on: jobs: build: uses: KSPModdingLibs/KSPBuildTools/.github/workflows/build.yml@1.1.1 + with: + artifacts: + GameData Extras LICENSE* README* CHANGELOG* + + assemble-release-asset: + needs: build + runs-on: ubuntu-latest + steps: + - uses: actions/download-artifact@v8 + with: + name: SystemHeat-RELEASE + path: SystemHeat + + - name: Extract Version + run: + export VFILE=SystemHeat/GameData/SystemHeat/Versioning/SystemHeat.version + echo "MAJOR=$(cat $VFILE | jq -r .VERSION.MAJOR)" >> "$GITHUB_ENV" + echo "MINOR=$(cat $VFILE | jq -r .VERSION.MINOR)" >> "$GITHUB_ENV" + echo "PATCH=$(cat $VFILE | jq -r .VERSION.PATCH)" >> "$GITHUB_ENV" + + - name: Build Release Zip + run: + cd SystemHeat + zip -r '../SystemHeat_${{env.MAJOR}}_${{env.MINOR}}_${{env.PATCH}}.zip' * + + - uses: actions/upload-artifact@v7 + with: + name: SystemHeat-${{env.MAJOR}}.${{env.MINOR}}.${{env.PATH}} + path: SystemHeat_${{env.MAJOR}}_${{env.MINOR}}_${{env.PATH}}.zip From 8d382ebae44dccaa1d521930f115036640b57a48 Mon Sep 17 00:00:00 2001 From: Phantomical Date: Mon, 4 May 2026 23:09:22 -0700 Subject: [PATCH 03/16] Fix artifact name --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index c881f1d..380a2c8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -20,7 +20,7 @@ jobs: steps: - uses: actions/download-artifact@v8 with: - name: SystemHeat-RELEASE + name: SystemHeat-Release path: SystemHeat - name: Extract Version From a03c293ad59952d2528d3217b266e7f0dfd975fd Mon Sep 17 00:00:00 2001 From: Phantomical Date: Mon, 4 May 2026 23:12:34 -0700 Subject: [PATCH 04/16] Properly use multiline blocks --- .github/workflows/release.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 380a2c8..8dd39dd 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -24,14 +24,14 @@ jobs: path: SystemHeat - name: Extract Version - run: + run: | export VFILE=SystemHeat/GameData/SystemHeat/Versioning/SystemHeat.version - echo "MAJOR=$(cat $VFILE | jq -r .VERSION.MAJOR)" >> "$GITHUB_ENV" - echo "MINOR=$(cat $VFILE | jq -r .VERSION.MINOR)" >> "$GITHUB_ENV" - echo "PATCH=$(cat $VFILE | jq -r .VERSION.PATCH)" >> "$GITHUB_ENV" + echo "MAJOR=$(cat "$VFILE" | jq -r .VERSION.MAJOR)" >> "$GITHUB_ENV" + echo "MINOR=$(cat "$VFILE" | jq -r .VERSION.MINOR)" >> "$GITHUB_ENV" + echo "PATCH=$(cat "$VFILE" | jq -r .VERSION.PATCH)" >> "$GITHUB_ENV" - name: Build Release Zip - run: + run: | cd SystemHeat zip -r '../SystemHeat_${{env.MAJOR}}_${{env.MINOR}}_${{env.PATCH}}.zip' * From 5fe6e1f277f2212b3a61160d920a7a75cb011654 Mon Sep 17 00:00:00 2001 From: Phantomical Date: Mon, 4 May 2026 23:15:51 -0700 Subject: [PATCH 05/16] Fix a typo --- .github/workflows/release.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8dd39dd..f8dd79a 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,5 +37,5 @@ jobs: - uses: actions/upload-artifact@v7 with: - name: SystemHeat-${{env.MAJOR}}.${{env.MINOR}}.${{env.PATH}} - path: SystemHeat_${{env.MAJOR}}_${{env.MINOR}}_${{env.PATH}}.zip + name: SystemHeat-${{env.MAJOR}}.${{env.MINOR}}.${{env.PATCH}} + path: SystemHeat_${{env.MAJOR}}_${{env.MINOR}}_${{env.PATCH}}.zip From 714d123c1122b9128536207de2b9b93dd0b36746 Mon Sep 17 00:00:00 2001 From: Phantomical Date: Mon, 4 May 2026 23:20:34 -0700 Subject: [PATCH 06/16] Better compression --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f8dd79a..85187ad 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -33,7 +33,7 @@ jobs: - name: Build Release Zip run: | cd SystemHeat - zip -r '../SystemHeat_${{env.MAJOR}}_${{env.MINOR}}_${{env.PATCH}}.zip' * + zip -9 -r '../SystemHeat_${{env.MAJOR}}_${{env.MINOR}}_${{env.PATCH}}.zip' * - uses: actions/upload-artifact@v7 with: From e69fa39e9c93fdf42f5450aca39fea5e9bce6f1a Mon Sep 17 00:00:00 2001 From: Phantomical Date: Mon, 4 May 2026 23:57:41 -0700 Subject: [PATCH 07/16] Upload SystemHeat.version as an artifact --- .github/workflows/release.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 85187ad..e2c6dda 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -14,7 +14,7 @@ jobs: artifacts: GameData Extras LICENSE* README* CHANGELOG* - assemble-release-asset: + assemble-release-assets: needs: build runs-on: ubuntu-latest steps: @@ -39,3 +39,8 @@ jobs: with: name: SystemHeat-${{env.MAJOR}}.${{env.MINOR}}.${{env.PATCH}} path: SystemHeat_${{env.MAJOR}}_${{env.MINOR}}_${{env.PATCH}}.zip + + - uses: actions/upload-artifact@v7 + with: + name: SystemHeat.version + path: SystemHeat/GameData/SystemHeat/Versioning/SystemHeat.version From e605bbdf255c36aa6758965e41da3ded9ba117d6 Mon Sep 17 00:00:00 2001 From: Phantomical Date: Tue, 5 May 2026 00:11:17 -0700 Subject: [PATCH 08/16] Simplify a few things --- .github/workflows/release.yml | 23 +++++++++++++++++++---- 1 file changed, 19 insertions(+), 4 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index e2c6dda..f92ebef 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -17,18 +17,23 @@ jobs: assemble-release-assets: needs: build runs-on: ubuntu-latest + permissions: + contents: write steps: - uses: actions/download-artifact@v8 with: name: SystemHeat-Release path: SystemHeat + - name: Copy Version File + run: | + cp SystemHeat/GameData/SystemHeat/Versioning/SystemHeat.version . + - name: Extract Version run: | - export VFILE=SystemHeat/GameData/SystemHeat/Versioning/SystemHeat.version - echo "MAJOR=$(cat "$VFILE" | jq -r .VERSION.MAJOR)" >> "$GITHUB_ENV" - echo "MINOR=$(cat "$VFILE" | jq -r .VERSION.MINOR)" >> "$GITHUB_ENV" - echo "PATCH=$(cat "$VFILE" | jq -r .VERSION.PATCH)" >> "$GITHUB_ENV" + echo "MAJOR=$(cat SystemHeat.version | jq -r .VERSION.MAJOR)" >> "$GITHUB_ENV" + echo "MINOR=$(cat SystemHeat.version | jq -r .VERSION.MINOR)" >> "$GITHUB_ENV" + echo "PATCH=$(cat SystemHeat.version | jq -r .VERSION.PATCH)" >> "$GITHUB_ENV" - name: Build Release Zip run: | @@ -44,3 +49,13 @@ jobs: with: name: SystemHeat.version path: SystemHeat/GameData/SystemHeat/Versioning/SystemHeat.version + + - name: Upload release assets + if: github.event_name == 'release' + env: + GH_TOKEN: ${{ github.token }} + GH_REPO: ${{ github.repository }} + run: | + gh release upload '${{ github.event.release.tag_name }}' \ + 'SystemHeat_${{env.MAJOR}}_${{env.MINOR}}_${{env.PATCH}}.zip' \ + SystemHeat.version From 1749c3fcd3eaa530f1ed2dcdd981559ee63402dc Mon Sep 17 00:00:00 2001 From: Phantomical Date: Thu, 7 May 2026 00:36:01 -0700 Subject: [PATCH 09/16] Update to use KSPBT create-release workflow --- .github/workflows/release.yml | 68 ++++--------------- .../SystemHeat.version.versiontemplate | 28 ++++++++ 2 files changed, 42 insertions(+), 54 deletions(-) create mode 100644 GameData/SystemHeat/Versioning/SystemHeat.version.versiontemplate diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f92ebef..5b55a49 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -1,61 +1,21 @@ name: Release on: - release: - types: [published] - pull_request: - paths: - - .github/workflows/release.yml + workflow_dispatch: + inputs: + version-string: + description: 'Version (e.g. 0.8.3) or one of --major / --minor / --patch to bump from CHANGELOG.md' + required: true + default: --patch + type: string jobs: - build: - uses: KSPModdingLibs/KSPBuildTools/.github/workflows/build.yml@1.1.1 - with: - artifacts: - GameData Extras LICENSE* README* CHANGELOG* - - assemble-release-assets: - needs: build - runs-on: ubuntu-latest + release: permissions: contents: write - steps: - - uses: actions/download-artifact@v8 - with: - name: SystemHeat-Release - path: SystemHeat - - - name: Copy Version File - run: | - cp SystemHeat/GameData/SystemHeat/Versioning/SystemHeat.version . - - - name: Extract Version - run: | - echo "MAJOR=$(cat SystemHeat.version | jq -r .VERSION.MAJOR)" >> "$GITHUB_ENV" - echo "MINOR=$(cat SystemHeat.version | jq -r .VERSION.MINOR)" >> "$GITHUB_ENV" - echo "PATCH=$(cat SystemHeat.version | jq -r .VERSION.PATCH)" >> "$GITHUB_ENV" - - - name: Build Release Zip - run: | - cd SystemHeat - zip -9 -r '../SystemHeat_${{env.MAJOR}}_${{env.MINOR}}_${{env.PATCH}}.zip' * - - - uses: actions/upload-artifact@v7 - with: - name: SystemHeat-${{env.MAJOR}}.${{env.MINOR}}.${{env.PATCH}} - path: SystemHeat_${{env.MAJOR}}_${{env.MINOR}}_${{env.PATCH}}.zip - - - uses: actions/upload-artifact@v7 - with: - name: SystemHeat.version - path: SystemHeat/GameData/SystemHeat/Versioning/SystemHeat.version - - - name: Upload release assets - if: github.event_name == 'release' - env: - GH_TOKEN: ${{ github.token }} - GH_REPO: ${{ github.repository }} - run: | - gh release upload '${{ github.event.release.tag_name }}' \ - 'SystemHeat_${{env.MAJOR}}_${{env.MINOR}}_${{env.PATCH}}.zip' \ - SystemHeat.version + uses: Phantomical/KSPBuildTools/.github/workflows/create-release.yml@release-format-options + with: + version-string: ${{ inputs.version-string }} + artifacts: GameData Extras LICENSE* README* CHANGELOG* + flatten: true + version-file: GameData/SystemHeat/Versioning/SystemHeat.version diff --git a/GameData/SystemHeat/Versioning/SystemHeat.version.versiontemplate b/GameData/SystemHeat/Versioning/SystemHeat.version.versiontemplate new file mode 100644 index 0000000..0fa784e --- /dev/null +++ b/GameData/SystemHeat/Versioning/SystemHeat.version.versiontemplate @@ -0,0 +1,28 @@ +{ + "NAME":"SystemHeat", + "URL":"https://raw.githubusercontent.com/post-kerbin-mining-corporation/SystemHeat/master/GameData/SystemHeat/Versioning/SystemHeat.version", + "DOWNLOAD":"https://github.com/post-kerbin-mining-corporation/SystemHeat", + "VERSION": + { + "MAJOR":@VERSION_MAJOR@, + "MINOR":@VERSION_MINOR@, + "PATCH":@VERSION_PATCH@, + "BUILD":0 + }, + "KSP_VERSION": + { + "MAJOR":1, + "MINOR":12, + "PATCH":5 + }, + "KSP_VERSION_MIN":{ + "MAJOR":1, + "MINOR":11, + "PATCH":0 + }, + "KSP_VERSION_MAX":{ + "MAJOR":1, + "MINOR":12, + "PATCH":99 + } +} From 965454aedb67c0a9be4f54906d76df5adb683019 Mon Sep 17 00:00:00 2001 From: Phantomical Date: Thu, 7 May 2026 14:35:17 -0700 Subject: [PATCH 10/16] Switch version file generation to happen through KSPBT --- .github/workflows/release.yml | 2 +- .../SystemHeat/Versioning/SystemHeat.version | 33 ++++--------------- .../SystemHeat.version.versiontemplate | 28 ---------------- Source/SystemHeat.csproj | 12 ++++++- Source/SystemHeat.version | 20 +++++++++++ Source/SystemHeat.version.props | 6 ++++ .../SystemHeat.version.props.versiontemplate | 6 ++++ 7 files changed, 51 insertions(+), 56 deletions(-) delete mode 100644 GameData/SystemHeat/Versioning/SystemHeat.version.versiontemplate create mode 100644 Source/SystemHeat.version create mode 100644 Source/SystemHeat.version.props create mode 100644 Source/SystemHeat.version.props.versiontemplate diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 5b55a49..062df3b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -13,7 +13,7 @@ jobs: release: permissions: contents: write - uses: Phantomical/KSPBuildTools/.github/workflows/create-release.yml@release-format-options + uses: Phantomical/KSPBuildTools/.github/workflows/create-release.yml@update-create-release with: version-string: ${{ inputs.version-string }} artifacts: GameData Extras LICENSE* README* CHANGELOG* diff --git a/GameData/SystemHeat/Versioning/SystemHeat.version b/GameData/SystemHeat/Versioning/SystemHeat.version index 3a0e6a8..13eb445 100644 --- a/GameData/SystemHeat/Versioning/SystemHeat.version +++ b/GameData/SystemHeat/Versioning/SystemHeat.version @@ -1,28 +1,9 @@ { - "NAME":"SystemHeat", - "URL":"https://raw.githubusercontent.com/post-kerbin-mining-corporation/SystemHeat/master/GameData/SystemHeat/Versioning/SystemHeat.version", - "DOWNLOAD":"https://github.com/post-kerbin-mining-corporation/SystemHeat", - "VERSION": - { - "MAJOR":0, - "MINOR":8, - "PATCH":2, - "BUILD":0 - }, - "KSP_VERSION": - { - "MAJOR":1, - "MINOR":12, - "PATCH":5 - }, - "KSP_VERSION_MIN":{ - "MAJOR":1, - "MINOR":11, - "PATCH":0 - }, - "KSP_VERSION_MAX":{ - "MAJOR":1, - "MINOR":12, - "PATCH":99 - } + "NAME": "SystemHeat", + "URL": "https://github.com/post-kerbin-mining-corporation/SystemHeat/releases/latest/download/SystemHeat.version", + "DOWNLOAD": "https://github.com/post-kerbin-mining-corporation/SystemHeat/releases", + "KSP_VERSION": "1.12.5", + "KSP_VERSION_MIN": "1.11.0", + "KSP_VERSION_MAX": "1.12.99", + "VERSION": "0.8.2" } diff --git a/GameData/SystemHeat/Versioning/SystemHeat.version.versiontemplate b/GameData/SystemHeat/Versioning/SystemHeat.version.versiontemplate deleted file mode 100644 index 0fa784e..0000000 --- a/GameData/SystemHeat/Versioning/SystemHeat.version.versiontemplate +++ /dev/null @@ -1,28 +0,0 @@ -{ - "NAME":"SystemHeat", - "URL":"https://raw.githubusercontent.com/post-kerbin-mining-corporation/SystemHeat/master/GameData/SystemHeat/Versioning/SystemHeat.version", - "DOWNLOAD":"https://github.com/post-kerbin-mining-corporation/SystemHeat", - "VERSION": - { - "MAJOR":@VERSION_MAJOR@, - "MINOR":@VERSION_MINOR@, - "PATCH":@VERSION_PATCH@, - "BUILD":0 - }, - "KSP_VERSION": - { - "MAJOR":1, - "MINOR":12, - "PATCH":5 - }, - "KSP_VERSION_MIN":{ - "MAJOR":1, - "MINOR":11, - "PATCH":0 - }, - "KSP_VERSION_MAX":{ - "MAJOR":1, - "MINOR":12, - "PATCH":99 - } -} diff --git a/Source/SystemHeat.csproj b/Source/SystemHeat.csproj index 85fc6d1..b811429 100644 --- a/Source/SystemHeat.csproj +++ b/Source/SystemHeat.csproj @@ -1,6 +1,7 @@ + + - 0.8.2 SystemHeat SystemHeat net481 @@ -29,6 +30,15 @@ + + + $(KSPBT_ModRoot)/Versioning/SystemHeat.version + 1.12.5 + 1.11.0 + 1.12.99 + + + diff --git a/Source/SystemHeat.version b/Source/SystemHeat.version new file mode 100644 index 0000000..5beda22 --- /dev/null +++ b/Source/SystemHeat.version @@ -0,0 +1,20 @@ +{ + "NAME": "SystemHeat", + "URL": "https://github.com/post-kerbin-mining-corporation/SystemHeat/releases/latest/download/SystemHeat.version", + "DOWNLOAD": "https://github.com/post-kerbin-mining-corporation/SystemHeat/releases", + "KSP_VERSION": { + "MAJOR": 1, + "MINOR": 12, + "PATCH": 5 + }, + "KSP_VERSION_MIN": { + "MAJOR": 1, + "MINOR": 11, + "PATCH": 0 + }, + "KSP_VERSION_MAX": { + "MAJOR": 1, + "MINOR": 12, + "PATCH": 99 + } +} diff --git a/Source/SystemHeat.version.props b/Source/SystemHeat.version.props new file mode 100644 index 0000000..1ae7eef --- /dev/null +++ b/Source/SystemHeat.version.props @@ -0,0 +1,6 @@ + + + + 0.8.2 + + diff --git a/Source/SystemHeat.version.props.versiontemplate b/Source/SystemHeat.version.props.versiontemplate new file mode 100644 index 0000000..c46925a --- /dev/null +++ b/Source/SystemHeat.version.props.versiontemplate @@ -0,0 +1,6 @@ + + + + @VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@ + + From 55d950f47fdfc06f19e9664f29ece3aa9a463526 Mon Sep 17 00:00:00 2001 From: JonnyOThan Date: Fri, 8 May 2026 04:49:08 -0400 Subject: [PATCH 11/16] Update repository URLs in SystemHeat.version --- GameData/SystemHeat/Versioning/SystemHeat.version | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/GameData/SystemHeat/Versioning/SystemHeat.version b/GameData/SystemHeat/Versioning/SystemHeat.version index 13eb445..b81b84c 100644 --- a/GameData/SystemHeat/Versioning/SystemHeat.version +++ b/GameData/SystemHeat/Versioning/SystemHeat.version @@ -1,7 +1,7 @@ { "NAME": "SystemHeat", - "URL": "https://github.com/post-kerbin-mining-corporation/SystemHeat/releases/latest/download/SystemHeat.version", - "DOWNLOAD": "https://github.com/post-kerbin-mining-corporation/SystemHeat/releases", + "URL": "https://github.com/KSPModStewards/SystemHeat/releases/latest/download/SystemHeat.version", + "DOWNLOAD": "https://github.com/KSPModStewards/SystemHeat/releases", "KSP_VERSION": "1.12.5", "KSP_VERSION_MIN": "1.11.0", "KSP_VERSION_MAX": "1.12.99", From 0ba12ddbdf6aec8e7e912afee56e8366b2aa5e63 Mon Sep 17 00:00:00 2001 From: JonnyOThan Date: Fri, 8 May 2026 04:50:59 -0400 Subject: [PATCH 12/16] Remove version properties from csproj Removed versioning properties and import statement. --- Source/SystemHeat.csproj | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Source/SystemHeat.csproj b/Source/SystemHeat.csproj index b811429..8438f42 100644 --- a/Source/SystemHeat.csproj +++ b/Source/SystemHeat.csproj @@ -1,15 +1,9 @@ - - SystemHeat SystemHeat net481 - $(Version) - 0.1.0.0 - $(Version) - Heat handling system for Kerbal Space Program Area Denial Games SystemHeat From 46866110894f4f9cd2b48c804a321458c7ef8d18 Mon Sep 17 00:00:00 2001 From: JonnyOThan Date: Fri, 8 May 2026 04:52:17 -0400 Subject: [PATCH 13/16] Update repository URLs in SystemHeat.version --- Source/SystemHeat.version | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/SystemHeat.version b/Source/SystemHeat.version index 5beda22..7fee597 100644 --- a/Source/SystemHeat.version +++ b/Source/SystemHeat.version @@ -1,7 +1,7 @@ { "NAME": "SystemHeat", - "URL": "https://github.com/post-kerbin-mining-corporation/SystemHeat/releases/latest/download/SystemHeat.version", - "DOWNLOAD": "https://github.com/post-kerbin-mining-corporation/SystemHeat/releases", + "URL": "https://github.com/KSPModStewards/SystemHeat/releases/latest/download/SystemHeat.version", + "DOWNLOAD": "https://github.com/KSPModStewards/SystemHeat/releases", "KSP_VERSION": { "MAJOR": 1, "MINOR": 12, From 863c68283fc0bb52a83d5432ee8cbb54319ed44e Mon Sep 17 00:00:00 2001 From: JonnyOThan Date: Fri, 8 May 2026 04:58:19 -0400 Subject: [PATCH 14/16] Delete .github/workflows/release.yml --- .github/workflows/release.yml | 21 --------------------- 1 file changed, 21 deletions(-) delete mode 100644 .github/workflows/release.yml diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml deleted file mode 100644 index 062df3b..0000000 --- a/.github/workflows/release.yml +++ /dev/null @@ -1,21 +0,0 @@ -name: Release - -on: - workflow_dispatch: - inputs: - version-string: - description: 'Version (e.g. 0.8.3) or one of --major / --minor / --patch to bump from CHANGELOG.md' - required: true - default: --patch - type: string - -jobs: - release: - permissions: - contents: write - uses: Phantomical/KSPBuildTools/.github/workflows/create-release.yml@update-create-release - with: - version-string: ${{ inputs.version-string }} - artifacts: GameData Extras LICENSE* README* CHANGELOG* - flatten: true - version-file: GameData/SystemHeat/Versioning/SystemHeat.version From 84aedfe5eab482a59eeb787484cad69fa5280548 Mon Sep 17 00:00:00 2001 From: JonnyOThan Date: Fri, 8 May 2026 04:59:19 -0400 Subject: [PATCH 15/16] Delete Source/SystemHeat.version.props --- Source/SystemHeat.version.props | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 Source/SystemHeat.version.props diff --git a/Source/SystemHeat.version.props b/Source/SystemHeat.version.props deleted file mode 100644 index 1ae7eef..0000000 --- a/Source/SystemHeat.version.props +++ /dev/null @@ -1,6 +0,0 @@ - - - - 0.8.2 - - From 8450816daaf3357383a2fe89ead158cc5260b2e5 Mon Sep 17 00:00:00 2001 From: JonnyOThan Date: Fri, 8 May 2026 04:59:52 -0400 Subject: [PATCH 16/16] Delete Source/SystemHeat.version.props.versiontemplate --- Source/SystemHeat.version.props.versiontemplate | 6 ------ 1 file changed, 6 deletions(-) delete mode 100644 Source/SystemHeat.version.props.versiontemplate diff --git a/Source/SystemHeat.version.props.versiontemplate b/Source/SystemHeat.version.props.versiontemplate deleted file mode 100644 index c46925a..0000000 --- a/Source/SystemHeat.version.props.versiontemplate +++ /dev/null @@ -1,6 +0,0 @@ - - - - @VERSION_MAJOR@.@VERSION_MINOR@.@VERSION_PATCH@ - -