diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 96dffcb37..f629b85cd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -217,7 +217,7 @@ jobs: with: java-version: 11 - run: | - git describe --tags --exclude="Dev" + git describe --tags --exclude="dev" - run: | chmod +x gradlew ./gradlew photon-lib:build --max-workers 1 diff --git a/versioningHelper.gradle b/versioningHelper.gradle index cf1526ff8..53c481a4a 100644 --- a/versioningHelper.gradle +++ b/versioningHelper.gradle @@ -8,7 +8,7 @@ gradle.allprojects { String tagIsh try { exec { - commandLine 'git', 'describe', '--tags', '--exclude="Dev"', '--exclude="dev"' + commandLine 'git', 'describe', '--tags', '--exclude="dev"', '--exclude="dev"' standardOutput = stdout } tagIsh = stdout.toString().trim().toLowerCase()