nextcloud: add folder strukture

This commit is contained in:
Schneider Roland 2024-10-13 13:39:41 +02:00
parent 58212203c2
commit f36c998bc3
2 changed files with 14 additions and 0 deletions

14
nextcloud/jenkins/Jenkinsfile vendored Normal file
View File

@ -0,0 +1,14 @@
pipeline {
agent any
stages {
stage('Hello') {
steps {
sh '''
ls -lah
'''
echo 'Hello World'
}
}
}
}