mirror of
https://github.com/drewcassidy/KSP-DepthMask
synced 2024-09-01 14:54:35 +00:00
¯\_(ツ)_/¯
This commit is contained in:
parent
6597be58a7
commit
0acc632bf3
1
.github/workflows/ksp-publish.yml
vendored
1
.github/workflows/ksp-publish.yml
vendored
@ -34,6 +34,7 @@ jobs:
|
||||
run: |
|
||||
mkdir -p DepthMask/dlls
|
||||
mkdir -p GameData
|
||||
mkdir -p GameData/DepthMask
|
||||
wget --user drewcassidy --password ${{ secrets.PILE_OF_ROCKS_PASS }} https://pileof.rocks/Secret/KSP-1.12.3-dlls.zip
|
||||
unzip KSP-*-dlls.zip -d DepthMask/
|
||||
|
||||
|
2
.gitignore
vendored
2
.gitignore
vendored
@ -329,3 +329,5 @@ ASALocalRun/
|
||||
# MFractors (Xamarin productivity tool) working folder
|
||||
.mfractor/
|
||||
DepthMask/dlls
|
||||
DepthMask/Properties/AssemblyInfo.cs
|
||||
GameData
|
||||
|
@ -1 +0,0 @@
|
||||
[assembly: KSPAssembly("DepthMask", 1, 1, 2)]
|
@ -14,7 +14,7 @@ def run():
|
||||
g = gp.Git(basedir)
|
||||
|
||||
release = True
|
||||
tag, distance, sha = g.execute(["git", "describe" "--tags"]).split("-")
|
||||
tag, distance, sha = g.execute(["git", "describe", "--tags"]).split("-")
|
||||
|
||||
if int(distance) > 0:
|
||||
release = False
|
||||
|
Loading…
Reference in New Issue
Block a user