From 1331faafb99962a76ef6d9ffe803e801e7f67daf Mon Sep 17 00:00:00 2001 From: Matt Date: Fri, 24 Sep 2021 16:27:25 -0400 Subject: [PATCH] aa --- .github/workflows/main.yml | 2 +- versioningHelper.gradle | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f629b85cd..fc119a966 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" --exclude="Dev" - run: | chmod +x gradlew ./gradlew photon-lib:build --max-workers 1 diff --git a/versioningHelper.gradle b/versioningHelper.gradle index 53c481a4a..cf1526ff8 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()