Compare commits

...

1 Commits

Author SHA1 Message Date
Matt
e6b0f398b6 Fix versioning picked up in CI (#291)
Fixes ignore blob in versioningHelper
2021-09-24 18:51:40 -04:00
2 changed files with 1 additions and 3 deletions

View File

@@ -216,8 +216,6 @@ jobs:
- uses: actions/setup-java@v1
with:
java-version: 11
- run: |
git describe --tags --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="[dD]ev*"'
standardOutput = stdout
}
tagIsh = stdout.toString().trim().toLowerCase()