Skip to content

Commit 16896ff

Browse files
committed
fix(deploy): Try to fix gpg: signing failed: Inappropriate ioctl for device
1 parent 08a0fe0 commit 16896ff

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Jenkinsfile_release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ timeout(20) {
2929

3030
stage('Start Release') {
3131
echo "releaseVersion: ${releaseVersion}"
32-
sh "./mvnw gitflow:release -DreleaseVersion=${releaseVersion} -DdevelopmentVersion=${developmentVersion} -DskipITs=true "
32+
sh "GPG_TTY=\$(tty) ./mvnw gitflow:release -DreleaseVersion=${releaseVersion} -DdevelopmentVersion=${developmentVersion} -DskipITs=true "
3333
}
3434
} catch (e) {
3535
mail subject: "${env.JOB_NAME} (${env.BUILD_NUMBER}): Error on build", to: '[email protected]', body: "Please go to ${env.BUILD_URL}."

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
<version>0.3.1-SNAPSHOT</version>
88
<packaging>pom</packaging>
99

10-
<name>ZAP Maven Plugin Parent</name>
11-
<description>Parent project for the ZAP Maven Plugin</description>
10+
<name>ZAP Java Integration</name>
11+
<description>Java Integration for OWASP ZAP</description>
1212
<url>https://github.com/ContinuousSecurityTooling/zap-maven-plugin</url>
1313

1414
<modules>

0 commit comments

Comments
 (0)