
pipeline {
    agent any

    stages {
        stage('Build') {
            steps {
                script {
                    def yamlFile = readFile('project.yaml')
                    echo "Building ${yamlFile} version ${yamlFile}"
                }
            }
        }
    }
}