[Add] Jenkinsfile

This commit is contained in:
Matias Pou 2025-10-13 14:58:18 -03:00
parent ac89ab2b2e
commit f989a09bd0

10
Jenkinsfile vendored Normal file
View file

@ -0,0 +1,10 @@
pipeline {
agent any
stages {
stage('Build') {
steps {
echo "🔨 Building branch: main"
}
}
}
}