Fix missing closing parens
All checks were successful
Core Repos/Homepage/pipeline/pr-master This commit looks good

This commit is contained in:
Cameron Cordes
2023-06-15 21:45:37 -04:00
parent cde1da6e5c
commit be2955482a

18
Jenkinsfile vendored
View File

@@ -37,19 +37,21 @@ pipeline {
sshPublisher( sshPublisher(
publishers: [ publishers: [
sshPublisherDesc( sshPublisherDesc(
configName: 'droplet-ssh', configName: 'droplet-ssh',
transfers: [ transfers: [
sshTransfer( sshTransfer(
sourceFiles: 'dist/Homepage/**', sourceFiles: 'dist/Homepage/**',
remoteDirectory: '/home/cameron/docker/homepage/html', remoteDirectory: '/home/cameron/docker/homepage/html',
execCommand: 'echo Finished' execCommand: 'echo Finished'
) )
] ]
)
] ]
) )
} }
} }
} }
post { post {
always { always {
archiveArtifacts artifacts: 'dist/Homepage/**', fingerprint: true archiveArtifacts artifacts: 'dist/Homepage/**', fingerprint: true