Skip to content

Commit

Permalink
Add signing of distributions (#520)
Browse files Browse the repository at this point in the history
Executing `./gradlew metafacture-runner:signArchives` builds signed
distributions in metafacture-core/metafacture-runner/build/distributions/.
  • Loading branch information
dr0i committed Feb 29, 2024
1 parent 6ce1f89 commit 3a7922e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions metafacture-runner/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ ext.mavenName = 'Metafacture Runner'
description = 'CLI application for data processing with Flux and Metamorph'

apply plugin: 'distribution'
apply plugin: 'signing'

configurations {
plugins {
Expand Down Expand Up @@ -144,6 +145,10 @@ distTar {
archiveExtension = 'tar.gz'
}

signing {
sign configurations.archives
}

distZip {
archiveClassifier = 'dist'
}
Expand Down

0 comments on commit 3a7922e

Please sign in to comment.