We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3a170bd commit a862792Copy full SHA for a862792
.github/workflows/maven-master.yml
@@ -45,7 +45,7 @@ jobs:
45
run: |
46
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`
47
echo "POM VERSION" ${MY_POM_VERSION}
48
- if [[ ! $MY_POM_VERSION =~ ^.*SNAPSHOT$ ]];
+ if [[ $MY_POM_VERSION =~ ^.*SNAPSHOT$ ]];
49
then
50
./mvnw clean deploy -U --settings $HOME/.m2/settings.xml
51
docker build --rm=false -t $DOCKER_GENERATOR_IMAGE_NAME:unstable ./modules/swagger-generator
0 commit comments