diff --git a/Jenkinsfile b/Jenkinsfile index 9b23c25..873cd79 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -17,6 +17,8 @@ pipeline { withGradle { sh './gradlew :compileAdblockList' } + // List the contents of the out directory for debugging + sh 'ls -la out' // Verify the file exists sh 'test -f out/andysadguardhomeblocklist.txt' } @@ -36,6 +38,8 @@ pipeline { stages { stage('Build') { steps { + // List the contents of the out directory for debugging + sh 'ls -la out' // Verify the file exists sh 'test -f out/andysadguardhomeblocklist.txt' sh 'docker build -t gitea.fahrecker.com/andreas-personal/andysadguardhomeblocklist:dev-latest -t gitea.fahrecker.com/andreas-personal/andysadguardhomeblocklist:${tag} .'