copy db files
Gitea/subman-nextjs/pipeline/head There was a failure building this commit Details

This commit is contained in:
andrzej 2024-10-03 17:14:32 +02:00
parent 1143cb5f22
commit 01e7e20686
1 changed files with 2 additions and 1 deletions

3
Jenkinsfile vendored
View File

@ -10,7 +10,8 @@ agent any
sh 'npm install' sh 'npm install'
sh 'npm run build' sh 'npm run build'
sh 'cp -r public .next/standalone/' sh 'cp -r public .next/standalone/'
sh 'cp -r .next/static .next/standalone/.next/' sh 'cp -r prisma .next/standalone/'
sh 'cp -r .next/static .next/standalone/'
sh ' tar -C .next -cf subman.tar.gz standalone ' sh ' tar -C .next -cf subman.tar.gz standalone '
} }
} }