You've already forked sap-jenkins-library
mirror of
https://github.com/SAP/jenkins-library.git
synced 2025-07-17 01:42:43 +02:00
12 lines
409 B
Groovy
12 lines
409 B
Groovy
![]() |
import groovy.transform.Field
|
||
|
|
||
|
@Field String STEP_NAME = getClass().getName()
|
||
|
@Field String METADATA_FILE = 'metadata/abapLandscapePortalUpdateAddOnProduct.yaml'
|
||
|
|
||
|
void call(Map parameters = [:]) {
|
||
|
List credentials = [
|
||
|
[type: 'token', id: 'landscapePortalAPICredentialsId', env: ['PIPER_landscapePortalAPIServiceKey']]
|
||
|
]
|
||
|
piperExecuteBin(parameters, STEP_NAME, METADATA_FILE, credentials)
|
||
|
}
|