Skip to content

Commit a862792

Browse files
committed
JDK 11+ - fix push Action attempt 4
1 parent 3a170bd commit a862792

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/maven-master.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
run: |
4646
export MY_POM_VERSION=`mvn -q -Dexec.executable="echo" -Dexec.args='${projects.version}' --non-recursive org.codehaus.mojo:exec-maven-plugin:1.3.1:exec`
4747
echo "POM VERSION" ${MY_POM_VERSION}
48-
if [[ ! $MY_POM_VERSION =~ ^.*SNAPSHOT$ ]];
48+
if [[ $MY_POM_VERSION =~ ^.*SNAPSHOT$ ]];
4949
then
5050
./mvnw clean deploy -U --settings $HOME/.m2/settings.xml
5151
docker build --rm=false -t $DOCKER_GENERATOR_IMAGE_NAME:unstable ./modules/swagger-generator

0 commit comments

Comments
 (0)