1
0
mirror of https://github.com/drewcassidy/KSP-DepthMask synced 2024-09-01 14:54:35 +00:00

Compare commits

...

3 Commits

Author SHA1 Message Date
403905abe7 Fix deployment 2022-11-03 19:24:14 -07:00
0e9558d116 Fix version tool 2022-11-03 19:12:55 -07:00
b74440a07d Release 1.1.3
This version changes the distribution layout! Please make sure DepthMask.dll is deleted before updating.

### Added

- Allowed for multiple body and mask transforms to be specified using a comma seperated list
2022-11-03 19:03:54 -07:00
3 changed files with 5 additions and 5 deletions

View File

@ -98,7 +98,7 @@ jobs:
run: | run: |
mkdir deploy mkdir deploy
zip -r deploy/DepthMask-$GITHUB_REF.zip DepthMask/* zip -r deploy/DepthMask-$VERSION_TITLE.zip DepthMask/*
cp DepthMask/GameData/DepthMask/DepthMask.version deploy/ cp DepthMask/GameData/DepthMask/DepthMask.version deploy/
ls deploy ls deploy
@ -109,7 +109,7 @@ jobs:
files: | files: |
deploy/DepthMask-*.zip deploy/DepthMask-*.zip
deploy/DepthMask.version deploy/DepthMask.version
name: DepthMask Version ${{ env.GITHUB_REF }} name: DepthMask Version ${{ env.VERSION_TITLE }}
body_path: RELEASE.md body_path: RELEASE.md
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
@ -123,7 +123,7 @@ jobs:
-F "changelog=$(yaclog show -mb)" \ -F "changelog=$(yaclog show -mb)" \
-F "game-version=1.12.4" \ -F "game-version=1.12.4" \
-F "notify-followers=yes" \ -F "notify-followers=yes" \
-F "zipball=@deploy/DepthMask-$GITHUB_REF.zip" \ -F "zipball=@deploy/DepthMask-$VERSION_TITLE.zip" \
"https://spacedock.info/api/mod/2943/update" "https://spacedock.info/api/mod/2943/update"
- name: Publish to Server - name: Publish to Server

View File

@ -2,7 +2,7 @@
All notable changes to this project will be documented in this file. All notable changes to this project will be documented in this file.
## Unreleased ## 1.1.3 - 2022-11-04
This version changes the distribution layout! Please make sure DepthMask.dll is deleted before updating. This version changes the distribution layout! Please make sure DepthMask.dll is deleted before updating.

View File

@ -14,7 +14,7 @@ def run():
g = gp.Git(basedir) g = gp.Git(basedir)
release = True release = True
tag, distance, sha = g.execute(["git", "describe", "--tags"]).split("-") tag, distance, sha, *_ = g.execute(["git", "describe", "--tags"]).split("-") + [0, 0]
if int(distance) > 0: if int(distance) > 0:
release = False release = False