Compare commits

..

2 Commits

Author SHA1 Message Date
andrzej c8da9be693 correct build directory (to 'dist') 2024-05-25 23:44:53 +02:00
andrzej dc2e0997be add dist to gitignore 2024-05-25 23:44:38 +02:00
2 changed files with 2 additions and 2 deletions

2
.gitignore vendored
View File

@ -9,7 +9,7 @@
/coverage /coverage
# production # production
#/build /dist
# misc # misc
.DS_Store .DS_Store

2
Jenkinsfile vendored
View File

@ -10,7 +10,7 @@ pipeline {
} }
stage('deploy'){ stage('deploy'){
steps{ steps{
sshPublisher(publishers: [sshPublisherDesc(configName: 'Demos', transfers: [sshTransfer(cleanRemote: false, excludes: '', execCommand: '', execTimeout: 120000, flatten: false, makeEmptyDirs: false, noDefaultExcludes: false, patternSeparator: '[, ]+', remoteDirectory: 'ssh-uploads/calculator', remoteDirectorySDF: false, removePrefix: '', sourceFiles: 'build/**')], usePromotionTimestamp: false, useWorkspaceInPromotion: false, verbose: false)]) sshPublisher(publishers: [sshPublisherDesc(configName: 'Demos', transfers: [sshTransfer(cleanRemote: false, excludes: '', execCommand: '', execTimeout: 120000, flatten: false, makeEmptyDirs: false, noDefaultExcludes: false, patternSeparator: '[, ]+', remoteDirectory: 'ssh-uploads/calculator', remoteDirectorySDF: false, removePrefix: '', sourceFiles: 'dist/**')], usePromotionTimestamp: false, useWorkspaceInPromotion: false, verbose: false)])
} }
} }
} }