This commit is contained in:
Matt
2021-09-24 16:27:25 -04:00
parent 2122bba268
commit 1331faafb9
2 changed files with 2 additions and 2 deletions

View File

@@ -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

View File

@@ -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()