Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

SKETCH: add step for getting properties #943

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Commits on Jun 19, 2024

  1. SKETCH: add step for getting properties

    Add a groovy script step to fetch custom properties from Artifactory.
    
    This provides Artifactory users with access to their additional
    metadata associated with artifacts stored in Artifactory, and allows
    pipelines to make decisions based on that metadata.
    
    This is called roughly as:
    ```
    artifactory = newArtifactoryServer( ARGS )
    def props = artifactoryGetProps(
        server: artifactory,
        relativePath: "PATH/TO/ARTIFACT"
        propertyKeys: ['PROPA', 'PROPB']
    )
    ```
    
    Signed-off-by: Eero Aaltonen <eero.aaltonen@vaisala.com>
    eaaltonen committed Jun 19, 2024
    Configuration menu
    Copy the full SHA
    2a3a3ca View commit details
    Browse the repository at this point in the history