Jenkins now fingerprints artifacts.

This commit is contained in:
Harrison Deng 2022-04-20 00:02:17 -05:00
parent a8f29b740f
commit 9a79e124ce

1
Jenkinsfile vendored
View File

@ -21,6 +21,7 @@ pipeline {
nodejs('NodeJS (17.4.0)') {
sh "npm run build:prod"
}
fingerprint "dist/**"
archiveArtifacts artifacts: 'dist/audioshowkit.js', followSymlinks: false
}
}