Skip to content

Commit

Permalink
Fix param name
Browse files Browse the repository at this point in the history
Signed-off-by: Sayali Gaikawad <[email protected]>
  • Loading branch information
gaiksaya committed Feb 6, 2023
1 parent 27cb915 commit abb93e3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ pipeline {
source: 'the-windows-msi.msi',
destination: 'msi/',
signingPlatform: 'windows',
sigType: 'null',
sigtype: 'null',
overwrite: true
)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
PublishToArtifactsProdBucket_Jenkinsfile.echo(Executing on agent [label:none])
PublishToArtifactsProdBucket_Jenkinsfile.stage(publishToartifactsDotOrg, groovy.lang.Closure)
PublishToArtifactsProdBucket_Jenkinsfile.script(groovy.lang.Closure)
PublishToArtifactsProdBucket_Jenkinsfile.publishToArtifactsProdBucket({assumedRoleName=test-role, source=the-windows-msi.msi, destination=msi/, signingPlatform=windows, sigType=null, overwrite=true})
PublishToArtifactsProdBucket_Jenkinsfile.publishToArtifactsProdBucket({assumedRoleName=test-role, source=the-windows-msi.msi, destination=msi/, signingPlatform=windows, sigtype=null, overwrite=true})
publishToArtifactsProdBucket.legacySCM(groovy.lang.Closure)
publishToArtifactsProdBucket.library({identifier=jenkins@main, retriever=null})
publishToArtifactsProdBucket.signArtifacts({artifactPath=the-windows-msi.msi, platform=windows, sigtype=null, overwrite=true})
Expand Down
2 changes: 1 addition & 1 deletion vars/publishToArtifactsProdBucket.groovy
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ void call(Map args = [:]) {
signArtifacts(
artifactPath: args.source,
platform: args.signingPlatform ?: 'linux',
sigtype: args.sigType ?: '.sig',
sigtype: args.sigtype ?: '.sig',
overwrite: args.overwrite ?: false
)
withCredentials([
Expand Down

0 comments on commit abb93e3

Please sign in to comment.