Skip to content

Commit 8c6a32b

Browse files
committed
"introducing the environmental variable for jf audit"
1 parent 42aeed4 commit 8c6a32b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

release/pipelines.release.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ pipelines:
1212
readOnly:
1313
NEXT_VERSION: 0.0.0
1414
NEXT_DEVELOPMENT_VERSION: 0.0.x-SNAPSHOT
15+
SKIP_AUDIT: false
1516

1617
steps:
1718
- name: Release
@@ -54,7 +55,7 @@ pipelines:
5455
- git merge origin/dev
5556

5657
# Run audit
57-
- jf audit
58+
- if [ "$SKIP_AUDIT" != "true" ]; then jf audit; fi
5859

5960
# Update version
6061
- sed -i "s/\(currentVersion=\).*\$/\1${NEXT_VERSION}/" gradle.properties

0 commit comments

Comments
 (0)