Skip to content

Commit

Permalink
Fix static site deployment for prod (follow-up) (#374)
Browse files Browse the repository at this point in the history
* Remove duplicate stage

* Surround identity file path in quotes

* Rename stage

* Change stage name back

* Remove extra quote
  • Loading branch information
jimmyfagan authored Aug 20, 2024
1 parent b93829e commit 82cecec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ops/Jenkinsfile.cbc-build-deploy-prod-akamai
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ pipeline {
stage("Deploy CSS to Akamai NetStorage (rsync)") {
steps {
sh """
rsync -av -e "ssh -oHostKeyAlgorithms=+ssh-dss -oStrictHostKeyChecking=no -i '${AKAMAI_SCP_SSH_KEY}''" ./dist/static-main.css ${AKAMAI_SSH_USER}@bluebuttoncms.rsync.upload.akamai.com:${UPLOAD_LOCATION}assets/css/
rsync -av -e "ssh -oHostKeyAlgorithms=+ssh-dss -oStrictHostKeyChecking=no -i '${AKAMAI_SCP_SSH_KEY}'" ./dist/static-main.css ${AKAMAI_SSH_USER}@bluebuttoncms.rsync.upload.akamai.com:${UPLOAD_LOCATION}assets/css/
"""
}
}
Expand Down

0 comments on commit 82cecec

Please sign in to comment.