Skip to content

Commit c198374

Browse files
Merge branch 'develop' into release/1.8.0
[deploy]
2 parents 061313e + 574194a commit c198374

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ jobs:
6060
PROJECT_VERSION=$(mvn help:evaluate "-Dexpression=project.version" -q -DforceStdout)
6161
test "$PROJECT_VERSION" = "${GITHUB_REF##*/}"
6262
- name: Verify project version is -SNAPSHOT
63-
if: !startsWith(github.ref, 'refs/tags/')
63+
if: startsWith(github.ref, 'refs/tags/') == false
6464
run: |
6565
PROJECT_VERSION=$(mvn help:evaluate "-Dexpression=project.version" -q -DforceStdout)
6666
test "${PROJECT_VERSION: -9}" = "-SNAPSHOT"
@@ -93,7 +93,7 @@ jobs:
9393
PROJECT_VERSION=$(mvn help:evaluate "-Dexpression=project.version" -q -DforceStdout)
9494
test "$PROJECT_VERSION" = "${GITHUB_REF##*/}"
9595
- name: Verify project version is -SNAPSHOT
96-
if: !startsWith(github.ref, 'refs/tags/')
96+
if: startsWith(github.ref, 'refs/tags/') == false
9797
run: |
9898
PROJECT_VERSION=$(mvn help:evaluate "-Dexpression=project.version" -q -DforceStdout)
9999
test "${PROJECT_VERSION: -9}" = "-SNAPSHOT"

0 commit comments

Comments
 (0)