We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3670f60 commit 77f59c4Copy full SHA for 77f59c4
release/pipelines.release.yml
@@ -14,6 +14,7 @@ pipelines:
14
NEXT_DEVELOPMENT_VERSION: 2.0.x-SNAPSHOT
15
NEXT_GRADLE_VERSION: 4.0.0
16
NEXT_GRADLE_DEVELOPMENT_VERSION: 4.0.x-SNAPSHOT
17
+ SKIP_AUDIT_CHECK: "false"
18
19
steps:
20
- name: Release
@@ -54,7 +55,14 @@ pipelines:
54
55
- jf gradlec --use-wrapper --uses-plugin --repo-resolve ecosys-maven-remote --repo-deploy ecosys-oss-release-local
56
57
# Run audit
- - jf audit --fail=false
58
+ - |
59
+ if [[ $SKIP_AUDIT_CHECK == "true" ]]; then
60
+ echo "Skipping audit check"
61
+ else
62
+ echo "Running audit check"
63
+ jf audit --fail=false
64
+ fi
65
+
66
67
# Update version
68
- sed -i -e "/build-info-version=/ s/=.*/=$NEXT_VERSION/" -e "/build-info-extractor-gradle-version=/ s/=.*/=$NEXT_GRADLE_VERSION/" gradle.properties
0 commit comments