Skip to content

Commit

Permalink
Remove unnecessary check
Browse files Browse the repository at this point in the history
The new check for 'signing.keyId' should cover this
  • Loading branch information
michel-kraemer committed Jun 26, 2024
1 parent dd69ae7 commit e7023ba
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -186,11 +186,6 @@ tasks.withType(Sign).configureEach {
return false
}

// don't sign on CI server - it fails without a key
if ("true" == System.getenv("CI")) {
return false
}

// don't attempt to sign without a key
if (!project.hasProperty('signing.keyId')) {
return false
Expand Down

0 comments on commit e7023ba

Please sign in to comment.