Thank you! We'll be in touch ASAP.
Something went wrong, please try again or contact us directly at contact@dagshub.com
DAGsHub-Official:main
DAGsHub-Official:sign-up-aware-menu
pipeline { agent any stages { stage('Trigger google cloud build') { when { branch 'main' } steps { googleCloudBuild credentialsId: 'project-talos', request: file('gcloudbuild.yaml') } } stage('Make docs') { when { not { branch 'main' } } environment { WORKING_DIR = "$JENKINS_PATH_ON_HOST/workspace/DAGsHub_multibranch_test_jenkins" } steps { sh '. make-docs.sh' } } } post { always { discordSend title: currentBuild.fullDisplayName, link: currentBuild.absoluteUrl, result: currentBuild.currentResult, webhookURL: "${DISCORD_WEBHOOK}" } } }
Press p or to see the previous file or, n or to see the next file