ci: hopefully improved

Signed-off-by: moonleay <contact@moonleay.net>
This commit is contained in:
moonleay 2024-05-08 22:08:05 +02:00
parent 47e5fc5adf
commit d114a4156a
Signed by: moonleay
GPG key ID: 82667543CCD715FB
2 changed files with 3 additions and 4 deletions

View file

@ -1,6 +1,5 @@
on:
push:
tags: '*'
release:
jobs:
release:

View file

@ -30,8 +30,8 @@ plugins {
id("com.modrinth.minotaur") version "2.+"
}
val ver = if ((System.getenv("GITHUB_EVENT_NAME") ?: "local") == "tag") System.getenv("GITHUB_REF_NAME")
?: "err" else System.getenv("GIT_SHA_SHORT") ?: "0.0.0"
val ver = if ((System.getenv("GITHUB_REF") ?: "local").startsWith("refs/tags/"))
System.getenv("GITHUB_REF_NAME") ?: "err" else System.getenv("GIT_SHA_SHORT") ?: "0.0.0"
val mavenVersion = "$ver-${project.ext["minecraft.version"] as String}"
val modId: String by project